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

UBL: remove extra lines on settings load/report #22560

Merged
merged 3 commits into from Aug 13, 2021

Conversation

tpruvot
Copy link
Contributor

@tpruvot tpruvot commented Aug 12, 2021

Sample output before :

17:11:33.764 > echo: Last Updated: 2021-08-11
17:11:33.765 > echo:Compiled: Aug 12 2021
17:11:33.766 > echo: Free Memory: 49139  PlannerBufferBytes: 2816
17:11:34.159 > echo:V84 stored settings retrieved (636 bytes; crc 7431)
17:11:34.161 > Unified Bed Leveling System v1.01 inactive
17:11:34.212 >
17:11:34.212 > Mesh loaded from slot 0
17:11:34.212 > Mesh 0 loaded from storage.
17:11:38.669 > echo:SD card ok

SERIAL_EOL() is already present in the two places where report_state() is used in settings... G29 code use it a lot too, so keep the "\n" and remove SERIAL_EOL on settings load/report...

Small question: Is "echo:" prefix required ?
Also "Compiled:" line may need a space prefix...

Sample output before :

17:11:33.764 > echo: Last Updated: 2021-08-11
17:11:33.765 > echo:Compiled: Aug 12 2021
17:11:33.766 > echo: Free Memory: 49139  PlannerBufferBytes: 2816
17:11:34.159 > echo:V84 stored settings retrieved (636 bytes; crc 7431)
17:11:34.161 > Unified Bed Leveling System v1.01 inactive
17:11:34.212 >
17:11:34.212 > Mesh loaded from slot 0
17:11:34.212 > Mesh 0 loaded from storage.
17:11:38.669 > echo:SD card ok
@tpruvot
Copy link
Contributor Author

tpruvot commented Aug 12, 2021

hmm, maybe report_state() is also used in G29... its maybe the extra SERIAL_EOL() to remove in settings... will check

edit: indeed, G29 need some, let me fix that ;)

@tpruvot tpruvot changed the title UBL: remove extra line on serial startup, EOL in settings UBL: remove extra lines on settings load/reset Aug 12, 2021
@tpruvot
Copy link
Contributor Author

tpruvot commented Aug 12, 2021

After this change... we can see here we may want the echo prefix for M503 gcode copy paste (or not, if non-echo lines are ignored)

17:58:52.653 > echo:Compiled: Aug 12 2021
17:58:52.654 > echo: Free Memory: 49139  PlannerBufferBytes: 2816
17:58:53.047 > echo:V84 stored settings retrieved (636 bytes; crc 7431)
17:58:53.049 > Unified Bed Leveling System v1.01 inactive
17:58:53.099 > Mesh loaded from slot 0
17:58:53.100 > Mesh 0 loaded from storage.
17:58:57.557 > echo:SD card ok
G29 A
17:59:49.908 > Unified Bed Leveling System v1.01 active
17:59:49.959 > ok
M502
18:00:24.293 > X:0.00 Y:0.00 Z:0.00 E:0.00 Count X:0 Y:0 Z:0
18:00:24.304 > echo:Hardcoded Default Settings Loaded
18:00:24.306 > ok
M501
18:01:03.432 > echo:V84 stored settings retrieved (636 bytes; crc 7431)
18:01:03.433 > Unified Bed Leveling System v1.01 inactive
18:01:03.483 > Mesh loaded from slot 0
18:01:03.483 > Mesh 0 loaded from storage.
18:01:03.485 > echo:  G21    ; Units in mm (mm)
18:01:03.486 > echo:  M149 C ; Units in Celsius
18:01:03.487 >
18:01:03.487 > echo:; Filament settings: Disabled
18:01:03.489 > echo:  M200 S0 D1.75
18:01:03.490 > echo:; Steps per unit:
18:01:03.492 > echo: M92 X80.00 Y80.00 Z400.00 E98.00
18:01:03.493 > echo:; Maximum feedrates (units/s):
18:01:03.494 > echo:  M203 X200.00 Y200.00 Z100.00 E25.00
18:01:03.496 > echo:; Maximum Acceleration (units/s2):
18:01:03.498 > echo:  M201 X200.00 Y200.00 Z100.00 E3000.00
18:01:03.500 > echo:; Acceleration (units/s2): P<print_accel> R<retract_accel> T<travel_acce
18:01:03.504 > echo:  M204 P200.00 R500.00 T200.00
18:01:03.506 > echo:; Advanced: B<min_segment_time_us> S<min_feedrate> T<min_travel_feedrate
18:01:03.511 > echo:  M205 B20000.00 S0.00 T0.00 X10.00 Y10.00 Z0.40 E5.00
18:01:03.514 > echo:; Home offset:
18:01:03.514 > echo:  M206 X0.00 Y0.00 Z0.00
18:01:03.516 > echo:; Unified Bed Leveling:
18:01:03.517 > echo:  M420 S0 Z3.00
18:01:03.518 >
18:01:03.518 > Unified Bed Leveling System v1.01 inactive
18:01:03.568 > echo:; Active Mesh Slot: 0
18:01:03.568 > echo:; EEPROM can hold 11 meshes.
18:01:03.569 >
18:01:03.569 > echo:; Material heatup parameters:
18:01:03.572 > echo:  M145 S0 H200.00 B60.00 F0
18:01:03.573 > echo:  M145 S1 H250.00 B100.00 F0
18:01:03.575 > echo:; PID settings:
18:01:03.575 > echo:  M301 P17.22 I1.00 D74.22
18:01:03.576 > echo:  M304 P338.46 I63.96 D447.78
18:01:03.577 > echo:; Power-Loss Recovery:
18:01:03.579 > echo:  M413 S0
18:01:03.580 > echo:; Z-Probe Offset (mm):
18:01:03.581 > echo:  M851 X-35.00 Y-6.00 Z-0.96
18:01:03.583 > echo:; Filament load/unload lengths:
18:01:03.584 > echo:  M603 L0.00 U100.00
18:01:03.586 > echo:; Filament runout sensor:
18:01:03.587 > echo:  M412 S1
18:01:03.587 > echo:; UI Language:
18:01:03.590 > echo:  M414 S1
18:01:03.590 > ok
M503
18:02:04.276 > echo:  G21    ; Units in mm (mm)
18:02:04.278 > echo:  M149 C ; Units in Celsius
18:02:04.279 >
18:02:04.279 > echo:; Filament settings: Disabled
18:02:04.281 > echo:  M200 S0 D1.75
18:02:04.281 > echo:; Steps per unit:
18:02:04.282 > echo: M92 X80.00 Y80.00 Z400.00 E98.00
18:02:04.283 > echo:; Maximum feedrates (units/s):
18:02:04.285 > echo:  M203 X200.00 Y200.00 Z100.00 E25.00
18:02:04.288 > echo:; Maximum Acceleration (units/s2):
18:02:04.289 > echo:  M201 X200.00 Y200.00 Z100.00 E3000.00
18:02:04.290 > echo:; Acceleration (units/s2): P<print_accel> R<retract_accel> T<travel_acce
18:02:04.294 > echo:  M204 P200.00 R500.00 T200.00
18:02:04.296 > echo:; Advanced: B<min_segment_time_us> S<min_feedrate> T<min_travel_feedrate
18:02:04.302 > echo:  M205 B20000.00 S0.00 T0.00 X10.00 Y10.00 Z0.40 E5.00
18:02:04.305 > echo:; Home offset:
18:02:04.306 > echo:  M206 X0.00 Y0.00 Z0.00
18:02:04.307 > echo:; Unified Bed Leveling:
18:02:04.309 > echo:  M420 S0 Z3.00
18:02:04.309 >
18:02:04.309 > Unified Bed Leveling System v1.01 inactive
18:02:04.359 > echo:; Active Mesh Slot: 0
18:02:04.359 > echo:; EEPROM can hold 11 meshes.
18:02:04.360 >
18:02:04.360 > echo:; Material heatup parameters:
18:02:04.363 > echo:  M145 S0 H200.00 B60.00 F0
18:02:04.364 > echo:  M145 S1 H250.00 B100.00 F0
18:02:04.366 > echo:; PID settings:
18:02:04.366 > echo:  M301 P17.22 I1.00 D74.22
18:02:04.367 > echo:  M304 P338.46 I63.96 D447.78
18:02:04.368 > echo:; Power-Loss Recovery:
18:02:04.370 > echo:  M413 S0
18:02:04.371 > echo:; Z-Probe Offset (mm):
18:02:04.373 > echo:  M851 X-35.00 Y-6.00 Z-0.96
18:02:04.374 > echo:; Filament load/unload lengths:
18:02:04.375 > echo:  M603 L0.00 U100.00
18:02:04.377 > echo:; Filament runout sensor:
18:02:04.378 > echo:  M412 S1
18:02:04.378 > echo:; UI Language:
18:02:04.381 > echo:  M414 S1
18:02:04.381 > ok
M503 S0
18:16:17.162 >   G21    ; Units in mm (mm)
18:16:17.162 >   M149 C ; Units in Celsius
18:16:17.163 >
18:16:17.163 >   M200 S0 D1.75
18:16:17.165 >   M92 X80.00 Y80.00 Z400.00 E98.00
18:16:17.166 >   M203 X200.00 Y200.00 Z100.00 E25.00
18:16:17.168 >   M201 X200.00 Y200.00 Z100.00 E3000.00
18:16:17.169 >   M204 P200.00 R500.00 T200.00
18:16:17.170 >   M205 B20000.00 S0.00 T0.00 X10.00 Y10.00 Z0.40 E5.00
18:16:17.173 >   M206 X0.00 Y0.00 Z0.00
18:16:17.174 >   M420 S0 Z3.00
18:16:17.174 >   M145 S0 H200.00 B60.00 F0
18:16:17.176 >   M145 S1 H250.00 B100.00 F0
18:16:17.177 >   M301 P17.22 I1.00 D74.22
18:16:17.179 >   M304 P338.46 I63.96 D447.78
18:16:17.180 >   M413 S0
18:16:17.180 >   M851 X-35.00 Y-6.00 Z-0.96
18:16:17.181 >   M603 L0.00 U100.00
18:16:17.183 >   M412 S1
18:16:17.183 > echo:  M414 S1
18:16:17.185 > ok

This M414 S1 in M503 S0 may need some tweak too ;) edit: fixed

else UBL state is reported twice on M501... unsure its necessary

@tpruvot tpruvot changed the title UBL: remove extra lines on settings load/reset UBL: remove extra lines on settings load/report Aug 12, 2021
@thinkyhead thinkyhead merged commit 1555db2 into MarlinFirmware:bugfix-2.0.x Aug 13, 2021
thinkyhead pushed a commit that referenced this pull request Aug 19, 2021
@tpruvot tpruvot deleted the UBL_startup_log branch August 23, 2021 08:01
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 …
Domush added a commit to Domush/mvCNC-Modern-Vintage-CNC-Firmware that referenced this pull request Oct 17, 2021
commit 3c94f2f1c33395e45f3b2456f97eb64310b41000
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 17 01:02:43 2021 +0000

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

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

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

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

    💡 Update old gnu.org links

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

    ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (#22960)

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

    🎨 Refactor Host Actions as singleton

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

    🔧 Add, update TFT sanity checks (#22928)

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

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

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

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

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

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

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

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

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

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

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

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

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

    🔧 Remove obsolete G34 sanity check (#22929)

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

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

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

    🐛 Fix G33 homing current (#22909)

commit 3f9ff2421fadb2513e5c94688d4c49e4bf6b84e7
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Oct 12 18:26:42 2021 -0700

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

    Followup to #20609

commit 332ef9939c27d8b8159b71b713c892246b004efd
Author: thinkyhead <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 13 01:07:25 2021 +0000

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

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

    ✨ MKS Eagle (STM32F407VET6) board (#22897)

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

    🐛 Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)

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

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

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

    ✨ M261 S I2C output format (#22890)

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

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

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

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

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

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

    🐛 Fix IDEX Duplication Mode Positioning (#22914)

    Fixing #22538

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

    🩹 Adjust GTR 1.0 ST7920 display delay (#22904)

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

    🐛 Queue string followup (#22900)

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

    🐛 LCD string followup (#22892)

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

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

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

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

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

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

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

    🎨 Define Octopus allocated endstop pins (#22882)

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

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

    🔨 Port libsdl2_net required for macOS simulator

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

    🎨 Tweak FORCE_INLINE

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

    🐛 Followup to F() in config_line

    Followup to 1dafd1887e

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

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

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

    ✨ ESP32 Panda_ZHU and Panda_M4 (#22644)

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

    🔨 Move Creality 4.2.2 warning

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

    🐛 ExtUI F() followups

    Followup to 12b5d997a2

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

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

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

    🔨 Add 'opt_find' to find matching options

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

    🩹 Fix EXTRUDER 0 compile warning (#22868)

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

    🐛 Fix ExtUI Pause messages (#22874)

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

    🎨 Apply F() to kill / sendinfoscreen

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

    🎨 Apply F() to MKS UI errors, assets

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

    🎨 Apply F() to various reports

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

    🎨 Apply F() to G-code report header

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

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

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

    🎨 Apply F() to some ExtUI functions

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

    🎨 Apply F() to Host Actions strings

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

    🎨 Apply F() to status message

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

    🎨 Apply F() to serial macros

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

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

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

    🎨 Apply F() to E3V2 titles, popups

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

    🎨 Apply F() to G-code subcommands

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

    🎨 Update F string declarations

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

    🐛 Fix Arduino IDE compile error (#22877)

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

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

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

    🎨 Rename MarlinUI::zoffset_overlay

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

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

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

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

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

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

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

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

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

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

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

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

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

    🚑️ Fix DWIN_CompletedLeveling (#22851)

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

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

    🐛 E3V2 Mesh Viewer followup (#22850)

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

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

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

    🎨 Condense reverse-protection code

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

    ⚡️ Handle shared enable pins (#22824)

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

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

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

    ✨ E3V2 (Enhanced) Mesh Viewer (#22844)

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

    🚸 MKS UI LVGL bed preheat presets (#22842)

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

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

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

    🎨 steps_to_mm => mm_per_step (#22847)

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

    🚸 TFT backlight PWM / brightness (#22841)

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

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

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

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

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

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

    🩹 Fix M412_report formatting (#22834)

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

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

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

    🐛 E3V2 Brightness followup (#22821)

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

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

    🎨 Updated string macros

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

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

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

    🐛 Fix M420 / M851 reports (#22829)

    Followup to 79c72ed821

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

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

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

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

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

    🐛 Fix reset_hotend_offsets

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

    🎨 Various multi-axis patches (#22823)

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

    ⚡️ Improve LVGL touch driver (#22817)

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

    🐛 Fix anycubic_i3mega_lcd debug macros (#22820)

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

    🩹 Add MarlinSPI to more HALs

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

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

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

    🎨 Less use of undef for RAMPS pins

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

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

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

    🎨 Fix L64xx enable, clean up conditionals

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

    🔨 Improve pins_set script

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

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

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

    🩹 Remove extra #include, misc. style

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

    Polargraph / Makelangelo kinematics (#22790)

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

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

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

    🌐 Update Greek language (#22799)

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

    🌐 Skip non-essential translations

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

    🔨 Case-insensitive tests list

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

    🌐 Reduce language file sizes

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

    🐛 STM32 ADC followup (#22798)

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

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

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

    🚸 Wake up TFT for some events (#22788)

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

    🎨 Replace some infrequently-used macros

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

    📝 Update some pins comments

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

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

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

    🚸 Move fade item up

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

    🚸 Better bed position

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

    💬 Add non-translated STR_DONE

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

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

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

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

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

    🚸 Fix and improve MKS LVGL UI (#22783)

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

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

    💡 Adjust headers, formatting

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

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

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

    🔧 Add MANUAL_FEEDRATE sanity-check

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

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

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

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

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

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

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

    ✏️ Fix TFT field names (#22776)

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

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

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

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

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

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

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

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

    ✨ M282 - Detach Servo (#22760)

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

    ✨ TFT Screen/Backlight Sleep (#22617)

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

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

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

    🔖 Configurations version 02000902

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

    🎨 Use ExtUI API where applicable

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

    🌐 Update Slovak language (#22752)

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

    🐛 Fix old spindle/laser options

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

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

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

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

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

    🐛 Fix ENABLED => EITHER typo (#22756)

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

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

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

    🎨 Tweak custom menu item code

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

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

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

    📌 Creality 4.3.1 board variants (#22704)

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

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

    🚸 G33 R and O options (#22707)

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

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

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

    🐛 Fix JyersUI for LPC176x (#22745)

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

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

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

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

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

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

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

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

    🩹 Warn about user feedback requirement

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

    🐛 Followup to JyersUI

    Fix #22735, #22736

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

    🐛 Followup to E3V2 Enhanced

    Fix #22741

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

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

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

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

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

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

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

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

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

    🐛 Followup to JyersUI

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

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

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

    🐛 Fix, improve E3V2 Enhanced UI (#22733)

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

    🎨 Fewer serial macros

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

    🎨 Standardize G-code reporting

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

    🩹 Fix Enhanced E3V2 Advanced Pause (#22728)

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

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

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

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

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

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942)

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

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

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

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

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

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

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

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

    🚸 Show ExtUI message for PID_STARTED

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

    🎨 Misc. code cleanup

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

    🎨 Misc. Spindle/Laser (etc.) cleanup

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

    🚸 Per-hotend Watch items

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

    ⏪️ Clean up Info Menu

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

    🎨 MarlinUI for E3V2 tweaks

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

    🔧 Sanity checks for Ender 3 V2

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

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

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

    🎨 Use largest default ST9720 delays (#22713)

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

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

    ✨ Protoneer CNC-Shield 3.00 (#22715)

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

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

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

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

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

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

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

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

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

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

    🩹 Fix 'ms' warning

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

    ✨ Homing submenu option (#22692)

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

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

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

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

    🐛 Fix Mixing code typos (#22697)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    ✨ GT2560 V4.x A20 (#22664)

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

    ✨ Creality3D CR-30 PrintMill

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

    🎨 Tweak pins, comment formatting

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

    💄 Extended Info Menu

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

    🌐 Tweak language selection

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

    ⚡️ Add PROBE_PT_LAST_STOW

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

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

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

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

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

    🚸 Improve Tramming Wizard usability (#22672)

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

    ⏪️ Revert MAX31865 recent changes (#22660)

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

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

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

    🩹 Fix LPC176x M43 formatting (#22680)

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

    🌐 Update Hungarian language (#22678)

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

    🌐 Update Italian language (#22645)

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

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

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

    🎨 screws_tilt_adjust_pos => tramming_points

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

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

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

    🔨 Three columns in mftest menu

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

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

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

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

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

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

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

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

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

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

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

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

    🩹 Sensorless homing tweak

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

    🎨 Update more EXP Headers

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

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

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

    🎨 EXP headers, ST7920 delays (#22641)

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

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

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

    📝 AlephObjects => LulzBot

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

    🔨 Set Longer3D timers in variant (#22632)

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

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

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

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

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

    🩹 Tweak startup message (#22633)

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

    🔨 Melzi with OptiBoot build (#22630)

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

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

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

    🐛 Fix Multi-Endstop stepping (#22625)

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

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

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

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

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

    ✨ New board TH3D_EZBOARD_LITE_V2 (#22621)

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

    🎨 Define FYSETC S6 and TH3D EZBoard EXP1/2 pins

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

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

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

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

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

    🐛 Fix LPC176x M43 Pins Debugging (#22611)

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

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

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

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

    ✨ BOARD_RUMBA32_BTT (#22607)

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

    🎨 Misc code and spacing cleanup

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

    🎨 Tweak TMC software serial pins

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

    ⬆️ TMCStepper 0.7.3 (#22608)

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

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

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

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

    Followup to #19112

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

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

    Followup to #19112

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

    Followup to CrealityUI cleanup

    Followup to #22586

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

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

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

    Followup to CrealityUI cleanup

    Followup to #22586

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

    🐛 Show bed size as 'work:' in M115

    Fixes #22598

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

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

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

    📌 Disregard TMCStepper 0.7.2

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

    🩹 Followup to CrealityUI cleanup

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

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

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

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

    🐛 Fix Longer3D PWM/timer pins (#22583)

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

    ⚡️ Simplify PROBING_STEPPERS_OFF (#22581)

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

    ⏪️ Revert ABL G29 feedrate (#22574)

    Reverts 9130f58

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

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

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

    Clean up CrealityUI and MarlinUI (#22586)

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

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

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

    💚 Update STM32F103RET6_creality test path

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

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

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

    🐛 Fix LCD_COL_X_RJ

    Followup to #22471

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

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

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

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

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

    🎨 Update HAL/STM32 wrappers

    Followup to #22537

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

    🎨 Update MKSPWC, some other pins (#22557)

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

    🐛 Fix some BTT SKR2 pins (#22558)

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

    🚸 Fewer CRs in settings report (#22560)

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

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

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

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

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

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

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

    🔨 Use zip link for MarlinSimUI

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

    🎨 Tweak M73 condition

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

    🚸 Better error for MOTHERBOARD not defined (#22551)

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

    🐛 Fix M575 port index output (#22553)

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

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

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

    🚸 Set M122 interval only with S0 or Pn

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

    🐛 Use delete [] for new []

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

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

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

    🐛 Fix CoreXY plus extra axes

    See #22490

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

    🚑️ Init FastIO before anything else (#22508)

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

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

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

    🐛 Fix some Simulator on Windows issues (#22516)

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

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

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

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

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

    🎨 Spellcheck code (#22531)

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

    💚 Fix tests for new sanity-checks

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

    🐛 Fix FTDI Eve Touch UI (#22530)

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

    📌 MKS pins for PSU_CONTROL (#22528)

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

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

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

    🔧 Sanity-check DEFAULT_EJERK with LIN_ADVANCE

    See #20649

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

    🔧 Sanity-check Mixing plus Disable Inactive Extruder

    See #22166

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

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

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

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

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

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

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

    🐛 Fix fan index for Singlenozzle, chamber fan

    Fixes #22512
    Followup to #19152, #19519

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

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

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

    🎨 Simplify endstops flags (#22525)

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

    🚸 Fix BLTouch spelling

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

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

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

    ✨ Mixer Presets (#21562)

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

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

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

    🐛 Fix report_a_position ABC criteria

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

    🐛 Prevent ABL G29 setting a funky feedrate

    See #22472

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

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

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

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

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

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

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

    🐛 Fix FTDI Eve Touch UI (#22500)

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

    🐛 Spellcheck comments (#22496)

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

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

    🐛 Allow SKR Pro CONTROLLER_FAN_PIN override

    Followup to #22411

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

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

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

    🐛 Fix up endstop flags (#22487)

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

    🐛 Followup to 6 linear axes (#22482)

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

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

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

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

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

    M256 LCD brightness (#22478)

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

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

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

    🎨 Adjust settings.cpp indent

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

    🐛 Fix G38 with probe on Z_MIN (#22452)

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

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

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

    🐛 Fix custom menus on MKS UI (#22470)

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

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

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

    🚚 Relocate and adjust DWIN E3V2 (#22471)

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

    ✨ MKS Monster8 board (#22455)

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

    🔨 Update Longer and Chitu envs (#22467)

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

    🐛 Fix custom menus on TFT LVGL

    Fixes #21423. Regression from #18177.

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

    ✅ Custom logging for MBL

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

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

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

    🐛 Fix DGUS displays compile (#22464)

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

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

    Fixes #22466. Regression from #22377.

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

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

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

    🐛 One-based G35 point index output

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

    🎨 abs => ABS

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

    🐛 Fix PAUSE_MESSAGE_PAUSING=>PARKING

    Fixes #22250. Regression from #17460.

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

    🐛 Fix PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED

    Fixes #22295. Regression from #20241.

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

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

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

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

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

    🐛 Fix 5-axis no extruder compile

    Fixes #22446

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

    🐛 Fix 3-point leveling position

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

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

    📝 Document DGUS display options (#22443)

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

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

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

    🔧 HAS_CUSTOM_PROBE_PIN => USES_Z_MIN_PROBE_PIN

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

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

commit b37e851f3664f6b349f609115ffe55ef5b5b9280
Author: thinkyhead <thinkyhead@users.noreply.github.com>…
TheMichalcinOfficial added a commit to TheMichalcinOfficial/Marlin that referenced this pull request Oct 19, 2021
* 🐛 Fix some board names

* 🎨 NULL => nullptr

* 🐛 Fix delta calibrate manual move scale (MarlinFirmware#22430)

* 🐛 Fix Longer3D SDSS / SD_SS (MarlinFirmware#22444)

* 🐛 Fix SKR Pro bad directive (MarlinFirmware#22438)

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

* 🐛 Reset workDirDepth in cdroot() (MarlinFirmware#22441)

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

* 🎨 abs => ABS

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

* 🐛 SAV_3DGLCD conditionals (MarlinFirmware#22447)

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

* 🔧 HAS_CUSTOM_PROBE_PIN => USES_Z_MIN_PROBE_PIN

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

Fixes MarlinFirmware#22466. Regression from MarlinFirmware#22377.

* 🐛 Fix DGUS displays compile (MarlinFirmware#22464)

* ✅ Custom logging for MBL

* 🐛 Fix custom menus on TFT LVGL

Fixes MarlinFirmware#21423. Regression from MarlinFirmware#18177.

* 🐛 Fix custom menus on MKS UI (MarlinFirmware#22470)

* 🔨 Update Longer and Chitu envs (MarlinFirmware#22467)

* 🎨 Adjust settings.cpp indent

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

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

* 🐛 Allow SKR Pro CONTROLLER_FAN_PIN override

Followup to MarlinFirmware#22411

* 🔧 Sanity-check Mixing plus Disable Inactive Extruder

See MarlinFirmware#22166

* 🔧 Sanity-check DEFAULT_EJERK with LIN_ADVANCE

See MarlinFirmware#20649

* 💚 Fix tests for new sanity-checks

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

* 🐛 Fix report_a_position ABC criteria

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

* 🐛 Prevent ABL G29 setting a funky feedrate

See MarlinFirmware#22472

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

* 🚸 Fix BLTouch spelling

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

* ✨ M256 LCD brightness (MarlinFirmware#22478)

* 🐛 Fix G38 with probe on Z_MIN (MarlinFirmware#22452)

* 🐛 Followup to 6 linear axes (MarlinFirmware#22482)

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

* ✨ MKS Monster8 board (MarlinFirmware#22455)

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

* 📌 MKS pins for PSU_CONTROL (MarlinFirmware#22528)

* ✨ Simulator HAL and build targets (MarlinFirmware#22418)

* 🐛 Fix some Simulator on Windows issues (MarlinFirmware#22516)

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

* 🐛 Fix fan index for Singlenozzle, chamber fan

Fixes MarlinFirmware#22512
Followup to MarlinFirmware#19152, MarlinFirmware#19519

* 🎨 Add DWIN_StatusChanged_P

* 🎨 Misc. Cleanup

* 🔨 Fix FYSETC S6 envs (MarlinFirmware#22421)

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

* 🌐 Level Corners => Bed Tramming

* 🚑️ Init FastIO before anything else (MarlinFirmware#22508)

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

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

* 🐛 Fix CoreXY plus extra axes

See MarlinFirmware#22490

* 🐛 Use delete [] for new []

* 🚸 Set M122 interval only with S0 or Pn

* 🎨 Update HAL/STM32 wrappers

Followup to MarlinFirmware#22537

* 📝 Document DGUS display options (MarlinFirmware#22443)

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

Fixes MarlinFirmware#22466. Regression from MarlinFirmware#22377.

* 🚚 Relocate and adjust DWIN E3V2 (MarlinFirmware#22471)

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

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

* 🐛 Spellcheck comments (MarlinFirmware#22496)

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

* 🚸 Better error for MOTHERBOARD not defined (MarlinFirmware#22551)

* 🎨 Tweak M73 condition

* 🐛 Fix M575 port index output (MarlinFirmware#22553)

* 🔨 Use zip link for MarlinSimUI

* 🐛 Fix some BTT SKR2 pins (MarlinFirmware#22558)

* 🚸 Fewer CRs in settings report (MarlinFirmware#22560)

* 🐛 Fix LCD_COL_X_RJ

Followup to MarlinFirmware#22471

* 💚 Update STM32F103RET6_creality test path

* ⏪️ Revert ABL G29 feedrate (MarlinFirmware#22574)

Reverts 9130f58

* ⚡️ Simplify PROBING_STEPPERS_OFF (MarlinFirmware#22581)

* 🐛 Fix Longer3D PWM/timer pins (MarlinFirmware#22583)

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

* 📌 Disregard TMCStepper 0.7.2

* ♻️ Clean up CrealityUI and MarlinUI (MarlinFirmware#22586)

* ✨ Mixer Presets (MarlinFirmware#21562)

* ✨ Power-off confirm / beep options (MarlinFirmware#22191)

* ♻️ Consolidate PSU_CONTROL (MarlinFirmware#22304)

* ✨ Add TEMP_SENSOR_BOARD (MarlinFirmware#22279, MarlinFirmware#22342, MarlinFirmware#22343, MarlinFirmware#22344, MarlinFirmware#22350)

* ✨ D576 Buffer Monitoring (MarlinFirmware#19674)

* ✨ M76 Host Pause Feature (MarlinFirmware#21738)

* 🎨 Update MKSPWC, some other pins (MarlinFirmware#22557)

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

* 🎨 Fix some formatting, F() versus PSTR()

* 🐛 Show bed size as 'work:' in M115

Fixes MarlinFirmware#22598

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

Followup to MarlinFirmware#19112

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

Followup to MarlinFirmware#19112

* ⬆️ TMCStepper 0.7.3 (MarlinFirmware#22608)

* 🎨 Tweak TMC software serial pins

* 🎨 Misc code and spacing cleanup

* ✨ BOARD_RUMBA32_BTT (MarlinFirmware#22607)

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

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

* 🐛 Fix LPC176x M43 Pins Debugging (MarlinFirmware#22611)

* 🎨 Define FYSETC S6 and TH3D EZBoard EXP1/2 pins

* ✨ New board TH3D_EZBOARD_LITE_V2 (MarlinFirmware#22621)

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

* 🐛 Fix Multi-Endstop stepping (MarlinFirmware#22625)

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

* 🔨 Melzi with OptiBoot build (MarlinFirmware#22630)

* 🩹 Tweak startup message (MarlinFirmware#22633)

* 🔨 Set Longer3D timers in variant (MarlinFirmware#22632)

* 📝 AlephObjects => LulzBot

* 🎨 EXP headers, ST7920 delays (MarlinFirmware#22641)

* 🎨 Update more EXP Headers

* 🩹 Sensorless homing tweak

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

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

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

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

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

* 🔨 Three columns in mftest menu

* 🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

* 🎨 screws_tilt_adjust_pos => tramming_points

* 🔨 Fix HAL/STM32 F103Zx builds (MarlinFirmware#22610)

* 🌐 Update Italian language (MarlinFirmware#22645)

* 🌐 Update Hungarian language (MarlinFirmware#22678)

* 🩹 Fix LPC176x M43 formatting (MarlinFirmware#22680)

* ⏪️ Revert MAX31865 recent changes (MarlinFirmware#22660)

* 🚸 Improve Tramming Wizard usability (MarlinFirmware#22672)

* 🩹 Clean up BTT_SKR_CR6

Fixes MarlinFirmware#22665

* 🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (MarlinFirmware#22663)

* ⚡️ Add PROBE_PT_LAST_STOW

* 🐛 Followup to CrealityUI cleanup

Followup to MarlinFirmware#22586

* 🌐 Tweak language selection

* ⏪️ Clean up Info Menu

* 🎨 Tweak pins, comment formatting

* ✨ Creality3D CR-30 PrintMill

* ✨ GT2560 V4.x A20 (MarlinFirmware#22664)

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

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

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

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

* 🐛 Fix Mixing code typos (MarlinFirmware#22697)

* 📝 Update PID_PARAMS_PER_HOTEND comment (MarlinFirmware#22694)

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

* ✨ Homing submenu option (MarlinFirmware#22692)

* 🩹 Fix 'ms' warning

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

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

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

* ✨ Protoneer CNC-Shield 3.00 (MarlinFirmware#22715)

* 🎨 Use largest default ST9720 delays (MarlinFirmware#22713)

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

* 🔧 Sanity checks for Ender 3 V2

* 🎨 MarlinUI for E3V2 tweaks

* 🚸 Per-hotend Watch items

* 🎨 Misc. Spindle/Laser (etc.) cleanup

* 🎨 Misc. code cleanup

* 🚸 Show ExtUI message for PID_STARTED

* ✨Add DGUS_LCD_UI_RELOADED (MarlinFirmware#21931)

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

* ✨ Ender-3 V2 CrealityUI Enhanced (MarlinFirmware#21942, MarlinFirmware#22728, MarlinFirmware#22733)

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

* 🐛 Followup to JyersUI

* 🐛 Fix JyersUI for LPC176x (MarlinFirmware#22745)

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

* 🎨 Standardize G-code reporting

* 🎨 Fewer serial macros

* 🩹 Fix TOUCH_UI_FTDI_EVE warnings

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

* 🐛 Fix LPC1768 SD-based EEPROM debug

Fixes MarlinFirmware#22746

* 🩹 Warn about user feedback requirement

* 🐛 No probe enum for DELTA + SENSORLESS_PROBING

Fix MarlinFirmware#22729

* 🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

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

* 🚸 G33 R and O options (MarlinFirmware#22707)

* 📌 Creality 4.3.1 board variants (MarlinFirmware#22704)

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

* 🎨 Tweak custom menu item code

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

* 🐛 Fix ENABLED => EITHER typo (MarlinFirmware#22756)

* 🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

Fix MarlinFirmware#22762

* 🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

* 🐛 Fix old spindle/laser options

* 🌐 Update Slovak language (MarlinFirmware#22752)

* 🎨 Use ExtUI API where applicable

* 🔖 Configurations version 02000902

* ✨ TFT Screen/Backlight Sleep (MarlinFirmware#22617)

* ✨ M282 - Detach Servo (MarlinFirmware#22760)

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

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

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

* ✏️ Fix TFT field names (MarlinFirmware#22776)

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

* 🐛 E3V2 Brightness followup (MarlinFirmware#22821)

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

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

* 🔧 Add MANUAL_FEEDRATE sanity-check

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

* 💡 Adjust headers, formatting

* 🚸 Fix and improve MKS LVGL UI (MarlinFirmware#22783)

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

* 💬 Add non-translated STR_DONE

* 🚸 Better bed position

* 🚸 Move fade item up

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

* 📝 Update some pins comments

* 🎨 Replace some infrequently-used macros

* 🚸 Wake up TFT for some events (MarlinFirmware#22788)

* 🐛 STM32 ADC followup (MarlinFirmware#22798)

* 🌐 Reduce language file sizes

* 🔨 Case-insensitive tests list

* 🔨 Improve pins_set script

* 🌐 Skip non-essential translations

* 🌐 Update Greek language (MarlinFirmware#22799)

* ✨ Polargraph / Makelangelo kinematics (MarlinFirmware#22790)

* 🩹 Remove extra #include, misc. style

* 🎨 Fix L64xx enable, clean up conditionals

* 🎨 Less use of undef for RAMPS pins

* 🩹 Add MarlinSPI to more HALs

* 🐛 Fix anycubic_i3mega_lcd debug macros (MarlinFirmware#22820)

* ⚡️ Improve LVGL touch driver (MarlinFirmware#22817)

* 🎨 Various multi-axis patches (MarlinFirmware#22823)

* 🐛 Fix reset_hotend_offsets

* 🐛 Fix M420 / M851 reports (MarlinFirmware#22829)

Followup to 79c72ed

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

* 🎨 Updated string macros

* 🩹 Fix M412_report formatting (MarlinFirmware#22834)

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

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

* 🚸 TFT backlight PWM / brightness (MarlinFirmware#22841)

* 🎨 steps_to_mm => mm_per_step (MarlinFirmware#22847)

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

* ✨ E3V2 (Enhanced) Mesh Viewer (MarlinFirmware#22844)

* ⚡️ Handle shared enable pins (MarlinFirmware#22824)

* 🎨 Condense reverse-protection code

* 🐛 E3V2 Mesh Viewer followup (MarlinFirmware#22850)

* 🚑️ Fix DWIN_CompletedLeveling (MarlinFirmware#22851)

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

* 🎨 FTDI Eve Touch UI spinner enqueue string

* 🎨 Power-off tone followup (MarlinFirmware#22222)

* MKS Robin pins updates

* Marlin 2.0.9.2

* 🐛 Fix Arduino IDE compile error (MarlinFirmware#22877)

* 🐛 Fix ExtUI Pause messages (MarlinFirmware#22874)

* 🩹 Fix EXTRUDER 0 compile warning (MarlinFirmware#22868)

* 🔨 Add 'opt_find' to find matching options

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

Followup to MarlinFirmware#20609

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

* 🔧 Remove obsolete G34 sanity check (MarlinFirmware#22929)

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

* 🔨 Port libsdl2_net required for macOS simulator

* 🎨 Rename MarlinUI::zoffset_overlay

* ✨ ESP32 Panda_ZHU and Panda_M4 (MarlinFirmware#22644)

* 🎨 Tweak FORCE_INLINE

* 🎨 Define Octopus allocated endstop pins (MarlinFirmware#22882)

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

* 🩹 Adjust GTR 1.0 ST7920 display delay (MarlinFirmware#22904)

* ✨ MKS Eagle (STM32F407VET6) board (MarlinFirmware#22897)

* 🐛 Fix G33 homing current (MarlinFirmware#22909)

* ✨ Add option EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN (MarlinFirmware#22960)

* 💡 Update old gnu.org links

* 🔧 Safety feature warnings

* 🔨 Improve 'mftest' error message

* Fix Tool Change Park (MarlinFirmware#22968)

* Fix JyersUI ZOffset Multiplication (MarlinFirmware#22975)

* ✅ Warn about dummy thermistors

* 🔨 Use pull_request_target for check-pr

* 🔨 Update 'pio vscode init' detection

* 🔨 Delete after encrypt. Lerdge encrypt only once

* 💡 Sub-include pins labels

* 🎨 Fix pinsDebug_list warnings

* 🔨 Fix older GCC CXXFLAGS warning

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
Co-authored-by: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Co-authored-by: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Co-authored-by: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Co-authored-by: borland1 <barryorlando@hotmail.com>
Co-authored-by: vyacheslav-shubin <shubin-vv@krista.ru>
Co-authored-by: Marcio T <mlt4356-github@yahoo.com>
Co-authored-by: George Fu <nailao_5918@163.com>
Co-authored-by: ellensp <ellensp@hotmail.com>
Co-authored-by: mks-viva <1224833100@qq.com>
Co-authored-by: Malderin <52313714+Malderin@users.noreply.github.com>
Co-authored-by: Bob Anthony <42719046+bob-anthony@users.noreply.github.com>
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
Co-authored-by: Grayson <mxpklx@gmail.com>
Co-authored-by: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com>
Co-authored-by: Chris Pepper <p3p@p3psoft.co.uk>
Co-authored-by: Jason Smith <jason.inet@gmail.com>
Co-authored-by: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Co-authored-by: ldursw <37294448+ldursw@users.noreply.github.com>
Co-authored-by: luzpaz <luzpaz@users.noreply.github.com>
Co-authored-by: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Co-authored-by: Vert <45634861+Vertabreak@users.noreply.github.com>
Co-authored-by: Cytown <cytown@gmail.com>
Co-authored-by: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Co-authored-by: chendo <chendo@users.noreply.github.com>
Co-authored-by: charlespick <17918019+charlespick@users.noreply.github.com>
Co-authored-by: Fjederhaek <fjederhaek@gmail.com>
Co-authored-by: Taylor Talkington <taylor.talkington@gmail.com>
Co-authored-by: Ryan V1 <55478432+V1EngineeringInc@users.noreply.github.com>
Co-authored-by: Jin <3448324+jinhong-@users.noreply.github.com>
Co-authored-by: Sebastiaan Dammann <sebastiaandammann@outlook.com>
Co-authored-by: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Co-authored-by: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Co-authored-by: Christian Schuster <blackyle@me.com>
Co-authored-by: DvoraNoob <62312359+DvoraNoob@users.noreply.github.com>
Co-authored-by: Elliott Indiran <eindiran@users.noreply.github.com>
Co-authored-by: Thomas White <TomW1605@users.noreply.github.com>
Co-authored-by: Justin Nesselrotte <admin@jnesselr.org>
Co-authored-by: Gonçalo Pereira <goncalo_pereira@outlook.pt>
Co-authored-by: Dan <ribbles@users.noreply.github.com>
Co-authored-by: dotdash32 <dotdash32@gmail.com>
Co-authored-by: mrv96 <mrv96@users.noreply.github.com>
Co-authored-by: Jyers <76993396+Jyers@users.noreply.github.com>
Co-authored-by: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Co-authored-by: Luc Van Daele <lvd@sound-silence.com>
Co-authored-by: Chico <jjjm6000@gmail.com>
Co-authored-by: Roman Moravčík <roman.moravcik@gmail.com>
Co-authored-by: Desuuuu <contact@desuuuu.com>
Co-authored-by: Dakkaron <dak1st@gmx.at>
Co-authored-by: Sola <42537573+solawc@users.noreply.github.com>
Co-authored-by: makerbase <4164049@qq.com>
Co-authored-by: MKS-Sean <56996910+MKS-Sean@users.noreply.github.com>
Co-authored-by: Steven Haigh <netwiz@crc.id.au>
Co-authored-by: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Co-authored-by: Dan Royer <dan@marginallyclever.com>
Co-authored-by: Manuel McLure <manuel@mclure.org>
Co-authored-by: Steve Wills <steve@mouf.net>
Co-authored-by: espr14 <espr14@gmail.com>
Co-authored-by: Sebastien Andrivet <sebastien@andrivet.com>
Co-authored-by: Mark <niujl123@sina.com>
Co-authored-by: Minims <github@minims.fr>
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 …
vogler added a commit to vogler/Marlin that referenced this pull request Oct 22, 2021
Squashed commit of the following:

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

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

    💡 Adjust headers, formatting

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

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

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

    🔧 Add MANUAL_FEEDRATE sanity-check

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

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

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

    🐛 E3V2 Brightness followup (#22821)

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

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

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

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

    ✏️ Fix TFT field names (#22776)

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

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

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

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

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

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

    ✨ M282 - Detach Servo (#22760)

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

    ✨ TFT Screen/Backlight Sleep (#22617)

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

    🔖 Configurations version 02000902

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

    🎨 Use ExtUI API where applicable

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

    🌐 Update Slovak language (#22752)

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

    🐛 Fix old spindle/laser options

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

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

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

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

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

    🐛 Fix ENABLED => EITHER typo (#22756)

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

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

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

    🎨 Tweak custom menu item code

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

    📌 Creality 4.3.1 board variants (#22704)

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

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

    🚸 G33 R and O options (#22707)

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

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

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

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

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

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

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

    🩹 Warn about user feedback requirement

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

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

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

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

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

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

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

    🎨 Fewer serial macros

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

    🎨 Standardize G-code reporting

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

    🐛 Fix JyersUI for LPC176x (#22745)

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

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

    🐛 Followup to JyersUI

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

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942, #22728, #22733)

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

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

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

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

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

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

    🚸 Show ExtUI message for PID_STARTED

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

    🎨 Misc. code cleanup

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

    🎨 Misc. Spindle/Laser (etc.) cleanup

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

    🚸 Per-hotend Watch items

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

    🎨 MarlinUI for E3V2 tweaks

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

    🔧 Sanity checks for Ender 3 V2

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

    🎨 Use largest default ST9720 delays (#22713)

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

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

    ✨ Protoneer CNC-Shield 3.00 (#22715)

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

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

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

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

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

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

    🩹 Fix 'ms' warning

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

    ✨ Homing submenu option (#22692)

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

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

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

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

    🐛 Fix Mixing code typos (#22697)

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

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

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

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

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

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

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

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

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

    ✨ GT2560 V4.x A20 (#22664)

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

    ✨ Creality3D CR-30 PrintMill

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

    🎨 Tweak pins, comment formatting

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

    ⏪️ Clean up Info Menu

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

    🌐 Tweak language selection

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

    🐛 Followup to CrealityUI cleanup

    Followup to #22586

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

    ⚡️ Add PROBE_PT_LAST_STOW

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

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

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

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

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

    🚸 Improve Tramming Wizard usability (#22672)

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

    ⏪️ Revert MAX31865 recent changes (#22660)

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

    🩹 Fix LPC176x M43 formatting (#22680)

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

    🌐 Update Hungarian language (#22678)

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

    🌐 Update Italian language (#22645)

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

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

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

    🎨 screws_tilt_adjust_pos => tramming_points

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

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

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

    🔨 Three columns in mftest menu

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

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

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

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

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

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

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

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

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

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

    🩹 Sensorless homing tweak

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

    🎨 Update more EXP Headers

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

    🎨 EXP headers, ST7920 delays (#22641)

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

    📝 AlephObjects => LulzBot

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

    🔨 Set Longer3D timers in variant (#22632)

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

    🩹 Tweak startup message (#22633)

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

    🔨 Melzi with OptiBoot build (#22630)

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

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

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

    🐛 Fix Multi-Endstop stepping (#22625)

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

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

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

    ✨ New board TH3D_EZBOARD_LITE_V2 (#22621)

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

    🎨 Define FYSETC S6 and TH3D EZBoard EXP1/2 pins

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

    🐛 Fix LPC176x M43 Pins Debugging (#22611)

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

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

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

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

    ✨ BOARD_RUMBA32_BTT (#22607)

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

    🎨 Misc code and spacing cleanup

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

    🎨 Tweak TMC software serial pins

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

    ⬆️ TMCStepper 0.7.3 (#22608)

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

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

    Followup to #19112

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

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

    Followup to #19112

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

    🐛 Show bed size as 'work:' in M115

    Fixes #22598

commit 30665737dcd4296727154159b174164a5104e6a2
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 24 21:41:09 2021 -0500

    🎨 Fix some formatting, F() versus PSTR()

commit 0c401bddad7eecc4acf6960cd31726e1fc31572b
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 eb0d80cb196f6735db80897f4623a548555e16dd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 13 16:32:25 2021 -0500

    🎨 Update MKSPWC, some other pins (#22557)

commit e62486a6109f0ff9c22140d717c6a73e484d19e2
Author: charlespick <17918019+charlespick@users.noreply.github.com>
Date:   Wed Jul 28 14:09:33 2021 -0700

    ✨ M76 Host Pause Feature (#21738)

commit 51d954a4fd455c92ac7be7cf73f6fdae1baf2727
Author: chendo <chendo@users.noreply.github.com>
Date:   Fri Jul 23 13:53:00 2021 +1000

    ✨ D576 Buffer Monitoring (#19674)

commit 416234f43a347394d639fbacc3183891d7b0bb50
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 20:12:41 2021 -0500

    ✨ Add TEMP_SENSOR_BOARD (#22279, #22342, #22343, #22344, #22350)

commit 9ddb4de70ac23685b98ce0e2b25f3d24ae87c7b6
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jul 11 22:13:58 2021 -0700

    ♻️ Consolidate PSU_CONTROL (#22304)

commit 9741be59668582b976514e61b1514ac496eafe38
Author: Cytown <cytown@gmail.com>
Date:   Thu Jun 24 00:40:32 2021 +0800

    ✨ Power-off confirm / beep options (#22191)

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

    ✨ Mixer Presets (#21562)

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

    ♻️ Clean up CrealityUI and MarlinUI (#22586)

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 6ea6556d0989f6ef08ef169f513760c062de…
TheMichalcinOfficial added a commit to TheMichalcinOfficial/Marlin that referenced this pull request Nov 5, 2021
commit ea5508384ed04d70759a826a74ff0131cb110dd4
Merge: 9e70af869f 49e8defda1
Author: Michalcin <rabek33@gmail.com>
Date:   Fri Nov 5 16:23:57 2021 +0100

    Merge branch '2.0.x' of https://github.com/MarlinFirmware/Marlin into MarlinFirmware-2.0.x

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

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

    💡 Adjust headers, formatting

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

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

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

    🔧 Add MANUAL_FEEDRATE sanity-check

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

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

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

    🐛 E3V2 Brightness followup (#22821)

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

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

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

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

    ✏️ Fix TFT field names (#22776)

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

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

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

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

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

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

    ✨ M282 - Detach Servo (#22760)

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

    ✨ TFT Screen/Backlight Sleep (#22617)

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

    🔖 Configurations version 02000902

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

    🎨 Use ExtUI API where applicable

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

    🌐 Update Slovak language (#22752)

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

    🐛 Fix old spindle/laser options

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

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

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

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

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

    🐛 Fix ENABLED => EITHER typo (#22756)

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

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

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

    🎨 Tweak custom menu item code

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

    📌 Creality 4.3.1 board variants (#22704)

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

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

    🚸 G33 R and O options (#22707)

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

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

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

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

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

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

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

    🩹 Warn about user feedback requirement

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

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

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

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

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

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

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

    🎨 Fewer serial macros

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

    🎨 Standardize G-code reporting

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

    🐛 Fix JyersUI for LPC176x (#22745)

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

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

    🐛 Followup to JyersUI

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

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942, #22728, #22733)

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

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

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

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

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

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

    🚸 Show ExtUI message for PID_STARTED

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

    🎨 Misc. code cleanup

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

    🎨 Misc. Spindle/Laser (etc.) cleanup

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

    🚸 Per-hotend Watch items

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

    🎨 MarlinUI for E3V2 tweaks

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

    🔧 Sanity checks for Ender 3 V2

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

    🎨 Use largest default ST9720 delays (#22713)

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

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

    ✨ Protoneer CNC-Shield 3.00 (#22715)

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

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

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

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

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

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

    🩹 Fix 'ms' warning

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

    ✨ Homing submenu option (#22692)

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

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

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

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

    🐛 Fix Mixing code typos (#22697)

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

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

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

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

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

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

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

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

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

    ✨ GT2560 V4.x A20 (#22664)

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

    ✨ Creality3D CR-30 PrintMill

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

    🎨 Tweak pins, comment formatting

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

    ⏪️ Clean up Info Menu

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

    🌐 Tweak language selection

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

    🐛 Followup to CrealityUI cleanup

    Followup to #22586

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

    ⚡️ Add PROBE_PT_LAST_STOW

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

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

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

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

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

    🚸 Improve Tramming Wizard usability (#22672)

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

    ⏪️ Revert MAX31865 recent changes (#22660)

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

    🩹 Fix LPC176x M43 formatting (#22680)

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

    🌐 Update Hungarian language (#22678)

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

    🌐 Update Italian language (#22645)

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

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

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

    🎨 screws_tilt_adjust_pos => tramming_points

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

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

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

    🔨 Three columns in mftest menu

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

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

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

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

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

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

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

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

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

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

    🩹 Sensorless homing tweak

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

    🎨 Update more EXP Headers

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

    🎨 EXP headers, ST7920 delays (#22641)

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

    📝 AlephObjects => LulzBot

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

    🔨 Set Longer3D timers in variant (#22632)

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

    🩹 Tweak startup message (#22633)

commit 22fdfa96292a2cd2490920b031567a0fab5eb22a
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Thu Aug 26 01:05:06 2021 +0200

    🔨 Melzi with OptiBoot build (#22630)

commit a0ebe7c8ff846e94755c86cda076abc839388132
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date:   Thu Aug 26 06:33:08 2021 +0800

    🩹 Use <SoftwareSPI.h> in MAX31865 lib (#22618)

commit 125c5bc345615cdf0dfdb329473370a20d503721
Author: Ryan V1 <55478432+V1EngineeringInc@users.noreply.github.com>
Date:   Tue Aug 24 20:34:10 2021 -0700

    🐛 Fix Multi-Endstop stepping (#22625)

commit 95f27cf33970a332442ab3393c1e5e2b700a14be
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 24 18:07:41 2021 -0500

    🎨 EXP1/2 headers and pins cleanup (#22628)

commit 02ae4bc9b94512c0b4e32c7b017eea834098e15f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 24 14:55:12 2021 -0500

    ✨ New board TH3D_EZBOARD_LITE_V2 (#22621)

commit 6bf2be66ed22b1662d6eaad54697ad0d02fc062e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Aug 23 19:42:15 2021 -0500

    🎨 Define FYSETC S6 and TH3D EZBoard EXP1/2 pins

commit d8ef23eda7fc5391057c8375988426fdfdf77b27
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Sun Aug 22 22:47:37 2021 +0100

    🐛 Fix LPC176x M43 Pins Debugging (#22611)

commit 73ef26a106e618aa9fd4ffce2c8779a214f9facd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 22 05:25:07 2021 -0500

    ✨ MarlinUI for Ender 3 v2 DWIN LCD (#22594)

    Co-Authored-By: Taylor Talkington <taylor.talkington@gmail.com>

commit d51e70083dbc57563ef8bc2a816a72db2696d053
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Aug 22 11:05:39 2021 +1200

    ✨ BOARD_RUMBA32_BTT (#22607)

commit dc5ae16861e8240d379f0c3e54e4fbe5772cbbce
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Aug 21 18:00:55 2021 -0500

    🎨 Misc code and spacing cleanup

commit 0aa87af82f90be409e85e9c6f2792e912396a709
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Aug 21 15:07:52 2021 -0500

    🎨 Tweak TMC software serial pins

commit 0be98b98a78692ca4c899413eaf0026843559511
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Aug 21 12:19:02 2021 -0700

    ⬆️ TMCStepper 0.7.3 (#22608)

commit f7ce107ac6fe6891c98367b08d7963b9fce59715
Author: Fjederhaek <fjederhaek@gmail.com>
Date:   Sat Aug 21 00:45:05 2021 +0200

    🐛 Update H-bot / Core for 6-axis (#22600)

    Followup to #19112

commit 3f772df56830aa990cbafab72ae13d81bf8e4e76
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 20 15:40:17 2021 -0500

    🌐 Update menu titles, add more IJK (#22605)

    Followup to #19112

commit caa6ec051917f60c8f8a8fb3079844e57ba8086f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 19 17:38:05 2021 -0500

    🐛 Show bed size as 'work:' in M115

    Fixes #22598

commit 30665737dcd4296727154159b174164a5104e6a2
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 24 21:41:09 2021 -0500

    🎨 Fix some formatting, F() versus PSTR()

commit 0c401bddad7eecc4acf6960cd31726e1fc31572b
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 eb0d80cb196f6735db80897f4623a548555e16dd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 13 16:32:25 2021 -0500

    🎨 Update MKSPWC, some other pins (#22557)

commit e62486a6109f0ff9c22140d717c6a73e484d19e2
Author: charlespick <17918019+charlespick@users.noreply.github.com>
Date:   Wed Jul 28 14:09:33 2021 -0700

    ✨ M76 Host Pause Feature (#21738)

commit 51d954a4fd455c92ac7be7cf73f6fdae1baf2727
Author: chendo <chendo@users.noreply.github.com>
Date:   Fri Jul 23 13:53:00 2021 +1000

    ✨ D576 Buffer Monitoring (#19674)

commit 416234f43a347394d639fbacc3183891d7b0bb50
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 20:12:41 2021 -0500

    ✨ Add TEMP_SENSOR_BOARD (#22279, #22342, #22343, #22344, #22350)

commit 9ddb4de70ac23685b98ce0e2b25f3d24ae87c7b6
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jul 11 22:13:58 2021 -0700

    ♻️ Consolidate PSU_CONTROL (#22304)

commit 9741be59668582b976514e61b1514ac496eafe38
Author: Cytown <cytown@gmail.com>
Date:   Thu Jun 24 00:40:32 2021 +0800

    ✨ Power-off confirm / beep options (#22191)

commit ecb625a666c48db25d81cea597951dae25f6b2ac
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Thu Aug 5 00:45:49 2021 -0400

    ✨ Mixer Presets (#21562)

commit de7f6c425bcfce4f3c35a1a5a6fbf79fcf10d700
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 17 06:18:19 2021 -0500

    ♻️ Clean up CrealityUI and MarlinUI (#22586)

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 fea4e06484cb7072ffcdc61d32c0f6efe033…
RaphDaMan added a commit to RaphDaMan/Marlin that referenced this pull request Dec 1, 2021
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: makerbase <4164049@qq.com>
    Co-authored-by: MKS-Sean <56996910+MKS-Sean@users.noreply.github.com>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ab9609146f903a6490b0658405ba2b19199a99b6
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 16 04:36:26 2021 -0500

    💡 Adjust headers, formatting

commit e7a25a45e6199118cb5d56a7d5fede82c3be31d7
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Thu Sep 16 03:46:16 2021 -0400

    ✨ Improve pause/filament change for ExtUI (#22655)

commit 023eaabc1ced8ff6daa52a6e1904bf68935254ae
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Sep 15 21:12:39 2021 -0500

    🔧 Add MANUAL_FEEDRATE sanity-check

commit 03d7fbd755899d2ad549498f88f5376fe0cb60ae
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Sep 16 01:15:01 2021 -0500

    🎨 Handle more pre-defined pins in pins_postprocess (#22771)

commit 89898181bd2e92b420228021c12308fdb4314221
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sat Sep 25 05:59:43 2021 -0500

    🐛 E3V2 Brightness followup (#22821)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit e705a7724eace3970a1792933e1f614d07cc2667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Sep 15 19:48:29 2021 -0500

    🎨 Consolidate Ender-3 V2 DWIN common code (#22778)

commit 5b593da04d6f87e79ee99430ed6d15a5e9e0d799
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Sep 15 13:51:52 2021 -0700

    ✏️ Fix TFT field names (#22776)

commit 9c4f9bc62a3a53af150dee8a69f65c56c033e65a
Author: mks-viva <1224833100@qq.com>
Date:   Wed Sep 15 14:47:23 2021 -0500

    🐛 Fix MKS Monster8 EEPROM issue (serial timer) (#22777)

commit 84d1619127b19e9b6f159331d9dcb0b88398732c
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Wed Sep 15 01:44:28 2021 -0500

    🩹 Fix DWIN Enhanced Tune menu during homing (#22773)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit 1386e78369067bda6e5dcd8eb32779d68e854e9f
Author: Dakkaron <dak1st@gmx.at>
Date:   Wed Sep 15 02:00:48 2021 +0200

    ✨ M282 - Detach Servo (#22760)

commit 224371dfc6ba8de61d0255714b942df04c445da7
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Tue Sep 14 04:07:08 2021 +0200

    ✨ TFT Screen/Backlight Sleep (#22617)

commit 033043218e6a55da72631aee6f2fc28f000f261e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 18:46:30 2021 -0500

    🔖 Configurations version 02000902

commit fcbd99d941bc680e6409998fdd4882eab5dba992
Author: Desuuuu <contact@desuuuu.com>
Date:   Fri Sep 10 12:15:08 2021 +0200

    🎨 Use ExtUI API where applicable

commit 209e5c27cab7ff337c5235aa885ef0891db41335
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Tue Sep 14 00:10:30 2021 +0200

    🌐 Update Slovak language (#22752)

commit 92eb819aee1ac9581299339ebbb98356b0875a88
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 16:38:51 2021 -0500

    🐛 Fix old spindle/laser options

commit de4eed33e49b889b9a29e417c991e4564bbe634c
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 13 16:28:12 2021 -0500

    🔧 SPINDLE_LASER_PWM => SPINDLE_LASER_USE_PWM

commit 59ad93560e337c622e6fa738489de3647844aec5
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 12 21:41:24 2021 -0500

    🐛 Fix CUSTOM_MENU_MAIN_SCRIPT_DONE

    Fix #22762

commit 50e52c0fdb8bba2e6b7d7a8463cc5349dc9daee9
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Sun Sep 12 22:39:52 2021 -0400

    🐛 Fix ENABLED => EITHER typo (#22756)

commit e679fafaaf6f59b4252b8abcf260e7d879cc1db5
Author: mks-viva <1224833100@qq.com>
Date:   Sun Sep 12 21:30:09 2021 -0500

    ✨ MKS Robin Nano V1.3 (STM32F407VET6) (#22749)

commit 6de25804ebff7f78da0a5e304073a97e8fca24bf
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 12 21:21:35 2021 -0500

    🎨 Tweak custom menu item code

commit ded8ee0a1dc2f4f6e47cf1ae61b705648cb6ccd1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Sep 12 19:37:33 2021 -0500

    📌 Creality 4.3.1 board variants (#22704)

    Co-authored-by: Chico <jjjm6000@gmail.com>

commit 44d54a0d010c78ba43ebcf5283c30505e76e6098
Author: Luc Van Daele <lvd@sound-silence.com>
Date:   Mon Sep 13 02:35:37 2021 +0200

    🚸 G33 R and O options (#22707)

commit 6e1c997a0a808602c25ea66ecca4c83fb14603de
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Sep 13 11:03:24 2021 +1200

    🐛 Fix Trigorilla Pro HAL/STM32 build offset (#22761)

commit 17c9450f0c0ff96405ba8f60873adebd3aca91ff
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 15:41:42 2021 -0500

    🎨 Apply more HAS_DELTA_SENSORLESS_PROBING

commit d6a87aa75ba4ae20c4843b98341b3e6214cb3a7d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 02:47:53 2021 -0500

    🐛 No probe enum for DELTA + SENSORLESS_PROBING

    Fix #22729

commit 64acb9fe787c087bda466ca6189111785b30b448
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 02:15:05 2021 -0500

    🩹 Warn about user feedback requirement

commit 22bf774d61cb013029279cb1516a1685bbb67181
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Sep 11 00:48:20 2021 -0500

    🐛 Fix LPC1768 SD-based EEPROM debug

    Fixes #22746

commit e2a790b759f282232f07b5ef22218ec2d9b9ad6c
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Fri Sep 10 19:03:46 2021 -0600

    🚸 Enhance FTDI Eve Touch UI file select dialog (#22742)

commit ee1c1034e5fc77509d10c4d9d4b3436b6cdc9768
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 10 19:47:03 2021 -0500

    🩹 Fix TOUCH_UI_FTDI_EVE warnings

commit b661795ae5af15d773b9c148abe1c8005799dac4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 9 04:57:05 2021 -0500

    🎨 Fewer serial macros

commit 6d96c221bd8c3c6119870c6d90dc976c9e81dde2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 7 18:06:10 2021 -0500

    🎨 Standardize G-code reporting

commit a596faf4e5e4b47e50c9d2337a2b9d71fefa3719
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date:   Sun Sep 12 21:56:40 2021 +0200

    🐛 Fix JyersUI for LPC176x (#22745)

    Co-authored-by: Scott Lahteine <github@thinkyhead.com>

commit 3ee27e7e353b0a08ff114a8c805491a39e59f4d1
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Sep 10 18:49:57 2021 -0500

    🐛 Followup to JyersUI

commit 6cf2cf7bd4bba98dbcb73fca43c14953b977da9a
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Tue Sep 7 02:15:24 2021 -0500

    ✨ Ender-3 V2 CrealityUI Enhanced (#21942, #22728, #22733)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 54416f780d892ba3ea42c522e5d5d7c0cf94acb4
Author: Jyers <76993396+Jyers@users.noreply.github.com>
Date:   Mon Sep 6 21:06:27 2021 -0700

    ✨ Ender-3 V2 with Jyers UI (#22422)

commit 9d73fcb959e04839084abb78e9286a778a07ec5d
Author: mrv96 <mrv96@users.noreply.github.com>
Date:   Tue Sep 7 02:51:04 2021 +0200

    ✨Add DGUS_LCD_UI_RELOADED (#21931)

commit f434915ad67f3c92a2f88869861715c1334330e2
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 17:38:47 2021 -0500

    🚸 Show ExtUI message for PID_STARTED

commit bbce951666fbe7994df6bd9d376d6cc583083d8d
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 16:33:24 2021 -0500

    🎨 Misc. code cleanup

commit 8a4fec946081b985d61932da30ccf416fc7719a0
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Sep 6 15:34:12 2021 -0500

    🎨 Misc. Spindle/Laser (etc.) cleanup

commit 3a835162323e8f23e3b1d5b96a4ec9e27bb16605
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 21:23:56 2021 -0500

    🚸 Per-hotend Watch items

commit 03344a094739670074e3220564bd16a902df0fca
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Aug 27 16:12:08 2021 -0500

    🎨 MarlinUI for E3V2 tweaks

commit 72d7bbbbf67b53100c66f203c0b0f7ef9124f57f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sun Sep 5 20:32:29 2021 -0500

    🔧 Sanity checks for Ender 3 V2

commit 253f91765d839cb7b688eaed1586d20c51795722
Author: dotdash32 <dotdash32@gmail.com>
Date:   Sun Sep 5 17:21:25 2021 -0700

    🎨 Use largest default ST9720 delays (#22713)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4c7f8696ab2d12c915203f08973fb5c6ba53e5d6
Author: Dan <ribbles@users.noreply.github.com>
Date:   Sun Sep 5 13:32:09 2021 -0700

    ✨ Protoneer CNC-Shield 3.00 (#22715)

commit f94de97cdbdf799d39933897858b8ff1ac69e6dc
Author: Justin Nesselrotte <admin@jnesselr.org>
Date:   Sun Sep 5 14:21:45 2021 -0600

    ✨ Index Pick-and-Place board Rev.3 (#22647)

    Co-authored-by: Gonçalo Pereira <goncalo_pereira@outlook.pt>
    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit bae19a3737952a4c39f2ebb62a060d6b8a0d0b1b
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Sep 4 01:20:32 2021 +0200

    🌐 Update "Homing" for some languages (#22706)

commit cc3abcd2c50247dd934d49b91cc3b9460f1dc1a7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 3 17:26:36 2021 -0500

    🩹 Fix 'ms' warning

commit 9e18a543fa02bb103fd2ec35e7a26085227ce720
Author: Thomas White <TomW1605@users.noreply.github.com>
Date:   Fri Sep 3 12:30:24 2021 +0800

    ✨ Homing submenu option (#22692)

commit 13bccd8441d26deb12fbbe82b8c45aaadd778c1d
Author: Elliott Indiran <eindiran@users.noreply.github.com>
Date:   Thu Sep 2 20:41:41 2021 -0700

    📝 Update PID_PARAMS_PER_HOTEND comment (#22694)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 5af3dbdb308b8af3fb5fc53507dcb12779e121e3
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Sep 3 05:08:40 2021 +0200

    🐛 Fix Mixing code typos (#22697)

commit 9f43452fbd8421ad93f6b84499c821ef899c77c4
Author: DvoraNoob <62312359+DvoraNoob@users.noreply.github.com>
Date:   Wed Sep 1 21:29:20 2021 -0300

    🚸 MKS UI extrusion speed/steps config (#22656)

commit 61364906b3237749be02bc17cd8e05f250a74a43
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Sep 2 01:55:36 2021 +0200

    🔨 Enhance Lerdge pins, TFTs, and variants (#22658)

commit 105fd73c2868132ae687d5fd6b6102a0fc235e3c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Sep 2 01:45:17 2021 +0200

    🩹 Allow M42 S0/1 analogWrite on PWM pins (STM32) (#22631)

commit b4b69c0de376095e13d302088fa72393128eeedc
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Sep 1 22:33:24 2021 +1200

    🐛 BTT Octopus X MAX pin for IDEX (#22654)

commit a37be7236bef7067949e1e3e76c0fa7d104ccecc
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Tue Aug 31 03:36:00 2021 -0400

    ✨ GT2560 V4.x A20 (#22664)

commit bba7c0069fec0e72a500abe96995e3439ba4d89f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:44:55 2021 -0500

    ✨ Creality3D CR-30 PrintMill

commit 8916b05cb46e310e261902301afd0ae2b301159e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:54:51 2021 -0500

    🎨 Tweak pins, comment formatting

commit 99028376e694cb3e50181f0c09e614a15f4783e5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:54:17 2021 -0500

    ⏪️ Clean up Info Menu

commit c2796fbf3bf9464943392043c87eaabbcdda615d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:52:48 2021 -0500

    🌐 Tweak language selection

commit 37777a78bfface664094318cc53ec161e9eb985f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 19 19:16:46 2021 -0500

    🐛 Followup to CrealityUI cleanup

    Followup to #22586

commit 0da0aa9b2ecf7ef2820509255c6ba7a245a9c63c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 11 18:15:36 2020 -0600

    ⚡️ Add PROBE_PT_LAST_STOW

commit 9ffd3ed2e40d943db731d27f5c26c76adbd31904
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Aug 31 19:26:12 2021 +1200

    🔧 Set Z_PROBE_OFFSET_RANGE_MIN/MAX for MBL (#22663)

commit 1176c108600e4d45e3b4e836a585e51e68167414
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 31 02:23:49 2021 -0500

    🩹 Clean up BTT_SKR_CR6

    Fixes #22665

commit 2e9f819d5f7533752965fe01ed1e7f030e6a71a3
Author: Jason Smith <jason.inet@gmail.com>
Date:   Tue Aug 31 00:00:59 2021 -0700

    🚸 Improve Tramming Wizard usability (#22672)

commit 19353fc98c984a7ebc752d99c1034a3dd01ffa8d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Aug 31 15:40:49 2021 +1200

    ⏪️ Revert MAX31865 recent changes (#22660)

commit b21d62543fd1e1e10b5d69cc86fd7f386001176a
Author: Christian Schuster <blackyle@me.com>
Date:   Tue Aug 31 02:32:02 2021 +0200

    🩹 Fix LPC176x M43 formatting (#22680)

commit a42ecb843e17ce52c4f4a27dc7be5441c966da19
Author: Zs.Antal <45710979+AntoszHUN@users.noreply.github.com>
Date:   Tue Aug 31 02:30:14 2021 +0200

    🌐 Update Hungarian language (#22678)

commit 93ff2cb08685e679f5f7d70e52b07f4640f082c6
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Aug 31 00:05:11 2021 +0200

    🌐 Update Italian language (#22645)

commit 086fa0f0a738e7a3b97ea15b2b3decf41e197882
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 30 17:02:12 2021 -0500

    🔨 Fix HAL/STM32 F103Zx builds (#22610)

commit 5e97f37a78f1e91e37d3ede5fe225288c03d0309
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 23:06:24 2021 -0500

    🎨 screws_tilt_adjust_pos => tramming_points

commit c14b162b9e213eceaa20f5251c742100d605a79e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 23:02:53 2021 -0500

    🌐 MSG_PROBING_MESH => MSG_PROBING_POINT

commit 61c000d96f184388f5f42d7501895138fc328eba
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 20:04:14 2021 -0500

    🔨 Three columns in mftest menu

commit c06a183f28ea4d40ea7757d441a46cc733cd6a12
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Aug 29 16:05:30 2021 -0600

    ⚡️ Fix, enhance FTDI Eve Touch UI (#22619)

commit d1db17c6f5e024d148ef4d0b5fea0d89e24ff3e5
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sun Aug 29 16:03:10 2021 -0600

    ⚡️ Enhance and fix FTDI Eve Touch UI file select (#22651)

commit d336a4d71b8315e7b4d62395b6d6d87306b58ae9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 15:15:53 2021 -0500

    🐛 Fix SDSUPPORT for SKR CR-6 (#22668)

    Co-authored-by: Sebastiaan Dammann <sebastiaandammann@outlook.com>

commit 796309c9035ca21df64388d27e65b4c3a64436a8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 13:57:47 2021 -0500

    ⚡️ Improve G2/G3 arc handling (#22599)

commit 53df1dfe4d8bae533812b8ccd8ed90cd9dc041d9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 28 17:46:22 2021 -0500

    🩹 Sensorless homing tweak

commit 6769718264d5786028e633aab96f346fedaef8f5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 29 13:51:57 2021 -0500

    🎨 Update more EXP Headers

commit 7704d844198deb50feb74326f94385c67eb44aba
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 28 15:27:52 2021 -0500

    🎨 EXP headers, ST7920 delays (#22641)

commit 9b0e196ba2fab7fb1afcbed80e702e1f26dd806e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Fri Aug 27 17:23:08 2021 -0500

    📝 AlephObjects => LulzBot

commit fd594ab176260adf4e3bd04b6f7fb8bbaded85b0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Fri Aug 27 23:06:45 2021 +0200

    🔨 Set Longer3D timers in variant (#22632)

commit 8cadcf6bb61d5605244c1cb926b9269650ddf402
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Thu Aug 26 01:08:27 2021 +0200

    🩹 Tweak startup message (#22633)

commit 22fdfa96292a2cd2490920b031567a0fab5eb22a
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Thu Aug 26 01:05:06 2021 +0200

    🔨 Melzi with OptiBoot build (#22630)

commit a0ebe7c8ff846e94755c86cda076abc839388132
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date:   Thu Aug 26 06:33:08 2021 +0800

    🩹 Use <SoftwareSPI.h> in MAX31865 lib (#22618)

commit 125c5bc345615cdf0dfdb329473370a20d503721
Author: Ryan V1 <55478432+V1EngineeringInc@users.noreply.github.com>
Date:   Tue Aug 24 20:34:10 2021 -0700

    🐛 Fix Multi-Endstop stepping (#22625)

commit 95f27cf33970a332442ab3393c1e5e2b700a14be
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 24 18:07:41 2021 -0500

    🎨 EXP1/2 headers and pins cleanup (#22628)

commit 02ae4bc9b94512c0b4e32c7b017eea834098e15f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 24 14:55:12 2021 -0500

    ✨ New board TH3D_EZBOARD_LITE_V2 (#22621)

commit 6bf2be66ed22b1662d6eaad54697ad0d02fc062e
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Mon Aug 23 19:42:15 2021 -0500

    🎨 Define FYSETC S6 and TH3D EZBoard EXP1/2 pins

commit d8ef23eda7fc5391057c8375988426fdfdf77b27
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Sun Aug 22 22:47:37 2021 +0100

    🐛 Fix LPC176x M43 Pins Debugging (#22611)

commit 73ef26a106e618aa9fd4ffce2c8779a214f9facd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 22 05:25:07 2021 -0500

    ✨ MarlinUI for Ender 3 v2 DWIN LCD (#22594)

    Co-Authored-By: Taylor Talkington <taylor.talkington@gmail.com>

commit d51e70083dbc57563ef8bc2a816a72db2696d053
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Aug 22 11:05:39 2021 +1200

    ✨ BOARD_RUMBA32_BTT (#22607)

commit dc5ae16861e8240d379f0c3e54e4fbe5772cbbce
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Aug 21 18:00:55 2021 -0500

    🎨 Misc code and spacing cleanup

commit 0aa87af82f90be409e85e9c6f2792e912396a709
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Aug 21 15:07:52 2021 -0500

    🎨 Tweak TMC software serial pins

commit 0be98b98a78692ca4c899413eaf0026843559511
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Aug 21 12:19:02 2021 -0700

    ⬆️ TMCStepper 0.7.3 (#22608)

commit f7ce107ac6fe6891c98367b08d7963b9fce59715
Author: Fjederhaek <fjederhaek@gmail.com>
Date:   Sat Aug 21 00:45:05 2021 +0200

    🐛 Update H-bot / Core for 6-axis (#22600)

    Followup to #19112

commit 3f772df56830aa990cbafab72ae13d81bf8e4e76
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 20 15:40:17 2021 -0500

    🌐 Update menu titles, add more IJK (#22605)

    Followup to #19112

commit caa6ec051917f60c8f8a8fb3079844e57ba8086f
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Thu Aug 19 17:38:05 2021 -0500

    🐛 Show bed size as 'work:' in M115

    Fixes #22598

commit 30665737dcd4296727154159b174164a5104e6a2
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Sat Jul 24 21:41:09 2021 -0500

    🎨 Fix some formatting, F() versus PSTR()

commit 0c401bddad7eecc4acf6960cd31726e1fc31572b
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 eb0d80cb196f6735db80897f4623a548555e16dd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 13 16:32:25 2021 -0500

    🎨 Update MKSPWC, some other pins (#22557)

commit e62486a6109f0ff9c22140d717c6a73e484d19e2
Author: charlespick <17918019+charlespick@users.noreply.github.com>
Date:   Wed Jul 28 14:09:33 2021 -0700

    ✨ M76 Host Pause Feature (#21738)

commit 51d954a4fd455c92ac7be7cf73f6fdae1baf2727
Author: chendo <chendo@users.noreply.github.com>
Date:   Fri Jul 23 13:53:00 2021 +1000

    ✨ D576 Buffer Monitoring (#19674)

commit 416234f43a347394d639fbacc3183891d7b0bb50
Author: Scott Lahteine <github@thinkyhead.com>
Date:   Wed Aug 18 20:12:41 2021 -0500

    ✨ Add TEMP_SENSOR_BOARD (#22279, #22342, #22343, #22344, #22350)

commit 9ddb4de70ac23685b98ce0e2b25f3d24ae87c7b6
Author: Katelyn Schiesser <katelyn.schiesser@gmail.com>
Date:   Sun Jul 11 22:13:58 2021 -0700

    ♻️ Consolidate PSU_CONTROL (#22304)

commit 9741be59668582b976514e61b1514ac496eafe38
Author: Cytown <cytown@gmail.com>
Date:   Thu Jun 24 00:40:32 2021 +0800

    ✨ Power-off confirm / beep options (#22191)

commit ecb625a666c48db25d81cea597951dae25f6b2ac
Author: Vert <45634861+Vertabreak@users.noreply.github.com>
Date:   Thu Aug 5 00:45:49 2021 -0400

    ✨ Mixer Presets (#21562)

commit de7f6c425bcfce4f3c35a1a5a6fbf79fcf10d700
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 17 06:18:19 2021 -0500

    ♻️ Clean up CrealityUI and MarlinUI (#22586)

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.
Darred pushed a commit to Darred/Marlin that referenced this pull request Dec 2, 2021
ptoal pushed a commit to ptoal/Marlin that referenced this pull request Jan 12, 2022
mh-dm pushed a commit to mh-dm/Marlin that referenced this pull request May 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants