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

BTT SKR MINI E3 V2 with BTT MINI12864 V1.0 - only backlight working #686

Open
Legiotech opened this issue Sep 29, 2022 · 90 comments
Open

BTT SKR MINI E3 V2 with BTT MINI12864 V1.0 - only backlight working #686

Legiotech opened this issue Sep 29, 2022 · 90 comments

Comments

@Legiotech
Copy link

Hi
I'm trying to connect SKR MINI V2 with Mini12864, but best I can get is backlight working. I've made a custom cable to connect display to the board - then i checked 10 times if i made it right (according to #650/info in Marlin files). I have also followed recomendations for commenting/uncommenting different lines from #650 topic. I have set the contrast in Marlin\src\lcd\dogm\marlinui_DOGM.cpp to 255:
void MarlinUI::_set_contrast() { u8g.setContrast(255); }
IMG_20220929_174446

If I am correct my cable is working fine, otherwise i wouldn't get backlight (at least gnd, +5 and one more cable are fine). Do you know any way to make my screen work?

@radek8
Copy link

radek8 commented Sep 30, 2022

If I look at the pin file for your board, there is something I don't like...

@Legiotech
Copy link
Author

Legiotech commented Oct 1, 2022

I checked it and indeed there is two pins in mainboard, that are different than in Marlin files. Sadly i don't see any pins for PA9 and PA10 on mainboard. Does it mean that it won't work?
skrminie3v2

@radek8
Copy link

radek8 commented Oct 1, 2022

I didn't mean this.
PA9 and PA10 is fine

image

I don't have the SKR mini E3 board, nor the BTT MINI12864 display.
That's why I can't test the settings.
Send me your configuration files and I'll try to suggest changes if you want to test them.
configuration.h
configuration_adv.h
pins_BTT_SKR_MINI_E3_common.h

@radek8
Copy link

radek8 commented Oct 1, 2022

The swap is here

image

RX2 = PA3
TX2 = PA2
According to the pin file, it's the other way around.

image

@radek8
Copy link

radek8 commented Oct 1, 2022

Some pins ( PA9 , PA3) are defined twice. That won't be good either.
I would try to comment on these items:
#define LCD_PINS_RS PA9
#define LCD_PINS_ENABLE PA3
#define LCD_RESET_PIN PA10

image

@Legiotech
Copy link
Author

Thank you very much! I made changes that you talked about and it's working fine!!!

IMG_20221002_130841

@radek8
Copy link

radek8 commented Oct 2, 2022

Congratulations.
That's great. So what have you changed? I would suggest changing it in Marlin so that it works for others and they don't have to look for a problem as well.

@Legiotech
Copy link
Author

Modyfications in Marlin that I have done:

  • In Marlin\src\lcd\dogm\marlinui_DOGM.cpp:
    void MarlinUI::_set_contrast() { u8g.setContrast(255); }
  • Configuration.h:
    #define FYSETC_MINI_12864_2_1 - in line 2814

-pins (Marlin\src\pins\stm32f1\pins_BTT_SKR_MINI_E3_common.h):
after #elif ENABLED(FYSETC_MINI_12864_2_1) i've added #define NO_CONTROLLER_CUSTOM_WIRING_WARNING
and i've commented three lines:

    //#define LCD_PINS_RS                     PA9     // CS
    //#define LCD_PINS_ENABLE                 PA3     // MOSI
    #define LCD_BACKLIGHT_PIN               -1
    #define NEOPIXEL_PIN                    PB8
    #define LCD_CONTRAST                    255
    //#define LCD_RESET_PIN                   PA10

From the Marlin files that was it i guess. In wiring i swapped two wires in TFT connector:
Bez tytułu3

I think it was all. Thank you very much once again.

@radek8
Copy link

radek8 commented Oct 3, 2022

@Legiotech
I suggested the Marlin modification.
Thisiskeithb says no need to edit the file
Marlin\src\lcd\dogm\marlinui_DOGM.cpp
If no characters appear on the display, it is said that resetting the EEPROM is sufficient.
Can you please compile Marlin without this modification and try it?
Thank you

@Legiotech
Copy link
Author

I have compiled Marlin without changes in marlinui_DOGM.cpp and as it was before, there was no characters on the screen. I have plugged the usb cable and tried to connect to the board using Pronterface, but it haven't worked. After that I've installed a driver from https://github.com/bigtreetech/BIGTREETECH-SKR-mini-E3/tree/master/firmware/mapleDrv-USBdriver and it haven't worked as well.
I have also mount mainboard into the printer and it turned out that the screen work only when i power the board via usb (but it may be solved by reseting eeprom as Thisiskeithb said). When i power it from the usb and then turn on power supply it works fine and i can use screen normally.

@Sporkforce
Copy link

Hello, I am also trying to use the BTT Mini 12864 V1.0 on a BTT SKR Mini E3 V2.0. I am using the Marlin 2.0.8.2x SKR Mini E3 V2.0 Firmware and there is no
#elif ENABLED(FYSETC_MINI_12864_2_1
Entry in
Marlin\src\pins\stm32f1\pins_BTT_SKR_MINI_E3_common.h

Do I manually insert that entry along with

//#define LCD_PINS_RS PA9 // CS
//#define LCD_PINS_ENABLE PA3 // MOSI
#define LCD_BACKLIGHT_PIN -1
#define NEOPIXEL_PIN PB8
#define LCD_CONTRAST 255
//#define LCD_RESET_PIN PA10
?

I'm no stranger to rewiring connectors or tweaking firmware, but for some reason I can't get my head around this one. Thanks for any help.

@Legiotech
Copy link
Author

I had the same issue at first, so I decided to use Marlin 2.1.x and used WinMerge to rewrite configuration.h and configuration_adv.h. It was quite fast operation. I don't know if adding some lines by hand will help, but probably not. You can try it and report if it worked.
BTW I still have problem with connecting via usb to the mainboard, I will try to solve it, but now I have to put it aside for a bit.

@Sporkforce
Copy link

I got Marlin 2.1.1 and updated its Config/Config_adv, along with the pins_BTT_SKR_MINI_E3_common.h and marlinui_DOGM.cpp.
Havn't found anyone yet able to use USB connectivity though, after prowling the googles for a good bit.
Otherwise everything is accounted for and seems ready to go, custom cable is made, but for the life of me I can't get it to compile. It claims the wrong board is defined in Configuration.h . I read this may be a platformio board definition mismatch but Im still in the process of tracking this issue down. Were you able to get your firmware compiled without any fuss?

@Legiotech
Copy link
Author

Yes, I compiled my firmware without issues. I can't check my settings now, but if you won't solve the issue till wednesday I can check it for you. I was looking for some information about usb connection too and it seems to be not working.

@radek8
Copy link

radek8 commented Oct 29, 2022

@Sporkforce,
send the exact wording of the error.
Send all the files you edited:
configuration.h, configurtion_adv.h, pin file and more...

@Sporkforce
Copy link

Oh thanks! I used Winmerge to copy over the custom settings. The printer is a uniqe setup so misc sizes and hotend/thermistor/extruder wont match a typical Ender 3 or CR10
Full error message after attempt to compile:
buildroot/share/PlatformIO/scripts/../../../../Marlin/src/inc/../pins/stm32f1/pins_BTT_SKR_MINI_E3_common.h:247:8: error: #error "CAUTION! FYSETC_MINI_12864_2_1 / MKS_MINI_12864_V3 / BTT_MINI_12864_V1 requires wiring modifications. See 'pins_BTT_SKR_MINI_E3_common.h' for details. (Define NO_CONTROLLER_CUSTOM_WIRING_WARNING to suppress this warning.)"
247 | #error "CAUTION! FYSETC_MINI_12864_2_1 / MKS_MINI_12864_V3 / BTT_MINI_12864_V1 requires wiring modifications.
See 'pins_BTT_SKR_MINI_E3_common.h' for details. (Define NO_CONTROLLER_CUSTOM_WIRING_WARNING to suppress this warning.)"
| ^~~~~
buildroot/share/PlatformIO/scripts/../../../../Marlin/src/inc/../pins/stm32f1/pins_BTT_SKR_MINI_E3_common.h:315:2: error: #endif without #if
315 | #endif // HAS_WIRED_LCD
| ^~~~~
Error: MOTHERBOARD is not defined in Configuration.h
Marlin 2.1.1 Edited Files.zip

@radek8
Copy link

radek8 commented Oct 30, 2022

The error says that you have used a display that requires a special connection cable.
You have made the cable, now you need to accept this warning and comment out this line in the pin file:

image

@radek8
Copy link

radek8 commented Oct 30, 2022

Attention!
Your pin file appears to be corrupted.
#define NO_CONTROLLER_CUSTOM_WIRING_WARNING
is the wrong definition.

It should be right
#ifndef NO_CONTROLLER_CUSTOM_WIRING_WARNING

@radek8
Copy link

radek8 commented Oct 30, 2022

Use this pin file
pins_BTT_SKR_MINI_E3_common.zip

Also check the cable connection
there was a wiring error in the original pin file.

image

@Sporkforce
Copy link

@radek8 I appreciate the help! With your file it compiled just fine and I was able to flash the firmware without issue. The screen still doesnt work unfortunately. I attached
DSCF1252
a photo of the pinout I am using. The encoder LED Lights as does the LCD backlight, but the screen is completely blacked out by the LCD. I changed the contrast from 255 to 125, but the blacked-out LCD does not change.

@Legiotech I did get USB connectivity working with pronterface. I had to go into Device Manager, into "Ports (COM&LPT) and I found the STMicroelectronics Virtual COM Port that showed up when I connected the board. I went into "Properties" with a right click, and then to the "Port Settings" Tab at the top. I switched the Bits per Second from 9600 to 115200. It was detected in pronterface just fine after that. Verified connectivity by moving a stepper back and forth. I was not able to upload firmware to it via USB though.

@Sporkforce
Copy link

UPDATE: It is fully functional! I can't thank you guys enough. I had incorrectly put the RESET pin on Board Connector EXP1-4 to the Display's RESET pin EXP2-3 as seen in the previous post, It should go to LCD_RST EXP1-6. My final Pinout is as pictured.
DSCF1253
I also had forgotten to enable support for the Neopixel LED Driver on PB8 in Marlin 2.1.1 Configuration.h:
Line 3267
//#define NEOPIXEL_LED
#if ENABLED(NEOPIXEL_LED)
#define NEOPIXEL_TYPE NEO_GRBW
Was changed to:
#define NEOPIXEL_LED
#if ENABLED(NEOPIXEL_LED)
#define NEOPIXEL_TYPE NEO_RGB

Everything seem to be good, I'll test for a while and see. So far I'm thrilled. Thanks again

@Legiotech
Copy link
Author

UPDATE: I have connected my screen as @Sporkforce showed in last post and now im after week of testing and all is working fine. When i wired my screen correctly even USB communication started to work.
Thank you both very much for help!

radek8 added a commit to radek8/Marlin that referenced this issue Nov 22, 2022
pierre-quelin added a commit to pierre-quelin/MyMarlin that referenced this issue Dec 29, 2022
commit 3334582
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 19 14:42:28 2022 -0600

    🔖 Version 2.1.2

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

    📝 Update 2.1.x README

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

    🧑‍💻 M593 F "min" freq

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

    🐛 Fix Melzi encoder

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

    🩹 Fix LCD_FOR_MELZI with Tronxy Melzi

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

    🐛 Fix DOGM time overflow, alignment (MarlinFirmware#25103)

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

    🎨 Suppress warning (MarlinFirmware#25101)

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

    ✨ BTT Octopus with STM32-F407 (MarlinFirmware#25031)

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

    ✨ BigTreeTech EBB42 v1.1 (MarlinFirmware#24964)

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

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

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

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to MarlinFirmware#24619

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

    🩹 Fix M115_GEOMETRY_REPORT (MarlinFirmware#25092)

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

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

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

    🩹 Fix M502 init of default motion

    Fix regression from MarlinFirmware#25035

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

    🩹 Use custom I2C pins for OLED (MarlinFirmware#24970)

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

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

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

    ✨ TFT_COLOR_UI async DMA SPI (MarlinFirmware#24980)

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

    📝  Replace Twitter with Fosstodon

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

    🔧 Anycubic alternate Z1/Z2 wiring (MarlinFirmware#25071)

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

    ✨ JyersUI TMC Settings (MarlinFirmware#25048)

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

    🔧 Custom Menu Sanity Check (MarlinFirmware#25079)

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

    🔨 Updated 'mfconfig init'

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

    🔨 No env:mega1280 for MIGHTYBOARD_REVE (MarlinFirmware#25080)

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

    ⚡️ Better IS buffer size calc (MarlinFirmware#25035)

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

    ✨ Two controller fans (MarlinFirmware#24995)

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

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

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

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

    🚸 Progress display followup (MarlinFirmware#24879)

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

    ✨ M150 S default index (MarlinFirmware#23066)

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

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

    🔨 Return error on mftest exit

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

    📝 Update config comments

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

    🐛 Fix Fast PWM on AVR (MarlinFirmware#25030)

    Followup to MarlinFirmware#25005

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

    ✏️ Fix missing ) (MarlinFirmware#25055)

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

    🔨 Fix CI Test clean step (2)

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

    🎨 Misc. cleanup

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

    🔨 Fix CI Test clean step

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

    🐛 Fix TMC5160 + Input Shaping overcurrent (MarlinFirmware#25050)

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

    🩹 Ender 3v2 DWIN MarlinUI Fixup (MarlinFirmware#24984)

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

    🎨 Trailing whitespace

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

    🔨 Update renamed.ini (MarlinFirmware#25042)

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

    🩹 Fix MSG_MOVE_N_MM substitution (MarlinFirmware#25043)

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

    🚸 G30 move to logical XY (MarlinFirmware#24953)

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

    🎨 Misc. cleanup

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

    🧑‍💻 Use spaces indent for Python

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

    📝 Formatted Team Overview (MarlinFirmware#25029)

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

    🐛 Fix G-code resend race condition

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

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

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

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

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

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

    ⚡️ Input Shaping improvements (MarlinFirmware#24951)

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

    🐛 Fix missing va_end in UnwPrintf (MarlinFirmware#25027)

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

    🐛 Fix MILLISECONDS_PREHEAT_TIME / mintemp (MarlinFirmware#24967)

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

    🩹 Fix ADVANCE_K + DISTINCT_E_FACTORS sanity check (MarlinFirmware#25007)

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

    🔧 Merge TMC26X with TMC config (MarlinFirmware#24373)

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

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

    See bigtreetech/BIGTREETECH-SKR-mini-E3#686 (comment)

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

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

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

    🩹 Fix UBL menu compile (MarlinFirmware#25020)

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

    🚸 Add 50mm manual move (MarlinFirmware#24884)

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

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

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

    🚸 COLOR_UI sleep timeout / setting (MarlinFirmware#24994)

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

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

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

    ✏️ Fix Robin nano env typo (MarlinFirmware#24993)

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

    📺 FYSETC_MINI_12864_2_1 with BTT_SKR_E3_DIP (MarlinFirmware#24986)

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

    🩹 Fix planner typo (MarlinFirmware#24977)

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

    🐛 MKS_MINI_12864 on SKR 1.3 needs FORCE_SOFT_SPI (MarlinFirmware#24850)

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

    🔧 Check Delta homing direction (MarlinFirmware#24865)

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

    🩹 Fix SERVICE_INTERVAL reset (MarlinFirmware#24888)

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

    Fix FAST_PWM_FAN / TouchUI with NO_MOTION_BEFORE_HOMING (MarlinFirmware#25005)

    Fix regressions from MarlinFirmware#20323, MarlinFirmware#23463

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

    🩹 Fix 2 thermocouples (MarlinFirmware#24982)

    Followup to MarlinFirmware#24898

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

    🐛 Fix M808 starting count

    Reported by adcurtin on Discord

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

    🩹 Fix Overlord compile (MarlinFirmware#24947)

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

    🚸 M306: Indicate MPC Autotune (MarlinFirmware#24949)

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

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

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

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

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

    🎨 Prefer axis element over index

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

    🩹 Fix EEPROM write for !LIN_ADVANCE

    Fixes MarlinFirmware#24963
    Followup to MarlinFirmware#24821

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

    🩹 MAX Thermocouple followup

    Followup to MarlinFirmware#24898

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

    🩹 leds.update needed for reset_timeout

    Followup to MarlinFirmware#23590

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

    🧑‍💻 More direct encoder spin

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

    🎨 Update SAMD51 headers

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

    🎨 Format some lib-uhs3 code

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

    📌 ZRIB V52-V53 Servo Pins (MarlinFirmware#24880)

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

    ✨ Tenlog MB1V23 IDEX board (MarlinFirmware#24896)

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

    🌐 Update Italian language (MarlinFirmware#24915)

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

    📌 Remove unused RX/TX pins (MarlinFirmware#24932)

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

    🔧 Update Display Sleep LCD Check (MarlinFirmware#24934)

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

    🩹 Buttons Followup (MarlinFirmware#24935)

    Followup to MarlinFirmware#24878

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

    🩹 Allow for last non-servo extruder

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

    🐛 Fix move_extruder_servo (MarlinFirmware#24908)

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

    🐛 Fix FTDUI Status Screen Timeout (MarlinFirmware#24899)

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

    🩹 Fix spurious "bad command" (MarlinFirmware#24923)

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

    🩹 Fix M593 report

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

    🚸 Up to 3 MAX Thermocouples (MarlinFirmware#24898)

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

    🔧 Clean up unused ESP_WIFI pins

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

    🚀 ZV Input Shaping (MarlinFirmware#24797)

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

    🔨 gcc-12 for macOS native

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

    ✨ Controllerfan PWM scaling, kickstart (MarlinFirmware#24873)

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

    🚸 Probe pins for Chitu V5 (MarlinFirmware#24910)

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

    🔧 Some STM32 UART Sanity Checks (MarlinFirmware#24795)

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

    🎨 Misc. variant cleanup, translation

    Followup to MarlinFirmware#24787

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

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

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

    🔧 No Native USB on AVR (MarlinFirmware#24906)

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

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

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

    🎨 CONF_SERIAL_IS => SERIAL_IN_USE

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

    ✨ Tronxy v10 (MarlinFirmware#24787)

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

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

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

    🐛 Fix compile without Y/Z (MarlinFirmware#24858)

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

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

    🔧 Check Sensorless Homing on all axes (MarlinFirmware#24872)

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

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

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

    🎨 HAS_SPI_FLASH => SPI_FLASH

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

    🐛 Fix and improve Polargraph (MarlinFirmware#24847)

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

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

    🐛 Fix operators for V axis (MarlinFirmware#24866)

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

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

    🩹 Fix TFT LCD in Simulation (MarlinFirmware#24871)

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

    🎨 MMU2 cleanup

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

    🐛 Fix M876 without emergency parser

    Fix regression from 1fb2fff

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

    ✨ DOGM Display Sleep (MarlinFirmware#24829)

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

    🩹 Fix temperature include (MarlinFirmware#24834)

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

    🎨 Misc. variant cleanup

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

    🧑‍💻 Min and max for base types

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

    ✨ MKS SKIPR board (MarlinFirmware#24791)

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

    🔨 Update mfinfo for 2.1.x

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

    🧑‍💻 Min and max for base types

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

    ✨ ADVANCE_K per-extruder (MarlinFirmware#24821)

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

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

    ♻️ Set Progress without LCD (MarlinFirmware#24767)

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

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

    🩹 Fix Color UI touchscreen sleep (MarlinFirmware#24826)

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

    🩹 Fix Switching Toolhead compile (MarlinFirmware#24814)

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

    🧑‍💻 Einsy Rambo EXP headers (MarlinFirmware#24825)

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

    🔨 Detect feature parsing error (MarlinFirmware#24824)

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

    ✨ Creality v5.2.1 board (MarlinFirmware#24815)

    Followup to MarlinFirmware#24760

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

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

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

    🐛 Fix DUE compile and errors (MarlinFirmware#24809)

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

    🩹 Fix some vector_3 cast operators

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

    🔧 Update Creality 4.2.2 Driver Warning (MarlinFirmware#24806)

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

    🩹 Disable DEBUG_DGUSLCD (MarlinFirmware#24798)

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

    🎨 Remove non-const compare operators (MarlinFirmware#24810)

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

    ✨ Creality v5.2.1 board (MarlinFirmware#24760)

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

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

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

    ✏️ Followup for M524 (MarlinFirmware#24775)

    Followup to MarlinFirmware#24761

commit f1a05d1
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Mon Sep 26 22:18:15 2022 +0100

    🚸 UUID fallback to STM32 device SN (MarlinFirmware#24759)

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

commit a7a493d
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Sep 26 14:15:14 2022 -0700

    📌 Specify MarlinFirmware/U8glib (MarlinFirmware#24792)

commit d9967f5
Author: Renaud11232 <gaspardrenaud@hotmail.com>
Date:   Fri Sep 23 07:20:44 2022 +0200

    🔨 Fix LPC1768 autodetect path on Linux (MarlinFirmware#24773)

commit 5ee7466
Author: Stefan Kalscheuer <stefan@stklcode.de>
Date:   Fri Sep 16 21:21:13 2022 +0200

    ✨ Anycubic i3 Mega LCD file menu fix (MarlinFirmware#24752)

commit be14933
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ M217 G wipe retract length

commit 1f72c83
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ XY_COUNTERPART_BACKOFF_MM

commit 3d03f96
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ RGB_STARTUP_TEST

commit c996bfd
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Sep 2 03:04:46 2022 +0100

    ✨ Permit Linear Advance with I2S Streaming (MarlinFirmware#24684)

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to MarlinFirmware#24619
alrtprogrammer added a commit to alrtprogrammer/Marlin that referenced this issue Jan 2, 2023
commit 246f001
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Dec 30 19:03:18 2022 -0800

    📝 Fix Configs URL (MarlinFirmware#25167)

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

    🧑‍💻 Fix ONBOARD_FLASH_SIZE

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

    🔖 Version 2.1.2

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

    📝 Update 2.1.x README

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

    🧑‍💻 M593 F "min" freq

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

    🐛 Fix Melzi encoder

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

    🩹 Fix LCD_FOR_MELZI with Tronxy Melzi

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

    🐛 Fix DOGM time overflow, alignment (MarlinFirmware#25103)

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

    🎨 Suppress warning (MarlinFirmware#25101)

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

    ✨ BTT Octopus with STM32-F407 (MarlinFirmware#25031)

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

    ✨ BigTreeTech EBB42 v1.1 (MarlinFirmware#24964)

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

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

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

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to MarlinFirmware#24619

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

    🩹 Fix M115_GEOMETRY_REPORT (MarlinFirmware#25092)

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

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

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

    🩹 Fix M502 init of default motion

    Fix regression from MarlinFirmware#25035

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

    🩹 Use custom I2C pins for OLED (MarlinFirmware#24970)

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

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

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

    ✨ TFT_COLOR_UI async DMA SPI (MarlinFirmware#24980)

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

    📝  Replace Twitter with Fosstodon

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

    🔧 Anycubic alternate Z1/Z2 wiring (MarlinFirmware#25071)

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

    ✨ JyersUI TMC Settings (MarlinFirmware#25048)

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

    🔧 Custom Menu Sanity Check (MarlinFirmware#25079)

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

    🔨 Updated 'mfconfig init'

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

    🔨 No env:mega1280 for MIGHTYBOARD_REVE (MarlinFirmware#25080)

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

    ⚡️ Better IS buffer size calc (MarlinFirmware#25035)

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

    ✨ Two controller fans (MarlinFirmware#24995)

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

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

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

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

    🚸 Progress display followup (MarlinFirmware#24879)

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

    ✨ M150 S default index (MarlinFirmware#23066)

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

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

    🔨 Return error on mftest exit

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

    📝 Update config comments

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

    🐛 Fix Fast PWM on AVR (MarlinFirmware#25030)

    Followup to MarlinFirmware#25005

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

    ✏️ Fix missing ) (MarlinFirmware#25055)

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

    🔨 Fix CI Test clean step (2)

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

    🎨 Misc. cleanup

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

    🔨 Fix CI Test clean step

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

    🐛 Fix TMC5160 + Input Shaping overcurrent (MarlinFirmware#25050)

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

    🩹 Ender 3v2 DWIN MarlinUI Fixup (MarlinFirmware#24984)

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

    🎨 Trailing whitespace

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

    🔨 Update renamed.ini (MarlinFirmware#25042)

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

    🩹 Fix MSG_MOVE_N_MM substitution (MarlinFirmware#25043)

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

    🚸 G30 move to logical XY (MarlinFirmware#24953)

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

    🎨 Misc. cleanup

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

    🧑‍💻 Use spaces indent for Python

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

    📝 Formatted Team Overview (MarlinFirmware#25029)

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

    🐛 Fix G-code resend race condition

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

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

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

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

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

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

    ⚡️ Input Shaping improvements (MarlinFirmware#24951)

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

    🐛 Fix missing va_end in UnwPrintf (MarlinFirmware#25027)

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

    🐛 Fix MILLISECONDS_PREHEAT_TIME / mintemp (MarlinFirmware#24967)

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

    🩹 Fix ADVANCE_K + DISTINCT_E_FACTORS sanity check (MarlinFirmware#25007)

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

    🔧 Merge TMC26X with TMC config (MarlinFirmware#24373)

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

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

    See bigtreetech/BIGTREETECH-SKR-mini-E3#686 (comment)

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

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

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

    🩹 Fix UBL menu compile (MarlinFirmware#25020)

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

    🚸 Add 50mm manual move (MarlinFirmware#24884)

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

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

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

    🚸 COLOR_UI sleep timeout / setting (MarlinFirmware#24994)

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

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

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

    ✏️ Fix Robin nano env typo (MarlinFirmware#24993)

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

    📺 FYSETC_MINI_12864_2_1 with BTT_SKR_E3_DIP (MarlinFirmware#24986)

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

    🩹 Fix planner typo (MarlinFirmware#24977)

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

    🐛 MKS_MINI_12864 on SKR 1.3 needs FORCE_SOFT_SPI (MarlinFirmware#24850)

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

    🔧 Check Delta homing direction (MarlinFirmware#24865)

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

    🩹 Fix SERVICE_INTERVAL reset (MarlinFirmware#24888)

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

    Fix FAST_PWM_FAN / TouchUI with NO_MOTION_BEFORE_HOMING (MarlinFirmware#25005)

    Fix regressions from MarlinFirmware#20323, MarlinFirmware#23463

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

    🩹 Fix 2 thermocouples (MarlinFirmware#24982)

    Followup to MarlinFirmware#24898

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

    🐛 Fix M808 starting count

    Reported by adcurtin on Discord

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

    🩹 Fix Overlord compile (MarlinFirmware#24947)

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

    🚸 M306: Indicate MPC Autotune (MarlinFirmware#24949)

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

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

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

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

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

    🎨 Prefer axis element over index

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

    🩹 Fix EEPROM write for !LIN_ADVANCE

    Fixes MarlinFirmware#24963
    Followup to MarlinFirmware#24821

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

    🩹 MAX Thermocouple followup

    Followup to MarlinFirmware#24898

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

    🩹 leds.update needed for reset_timeout

    Followup to MarlinFirmware#23590

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

    🧑‍💻 More direct encoder spin

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

    🎨 Update SAMD51 headers

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

    🎨 Format some lib-uhs3 code

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

    📌 ZRIB V52-V53 Servo Pins (MarlinFirmware#24880)

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

    ✨ Tenlog MB1V23 IDEX board (MarlinFirmware#24896)

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

    🌐 Update Italian language (MarlinFirmware#24915)

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

    📌 Remove unused RX/TX pins (MarlinFirmware#24932)

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

    🔧 Update Display Sleep LCD Check (MarlinFirmware#24934)

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

    🩹 Buttons Followup (MarlinFirmware#24935)

    Followup to MarlinFirmware#24878

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

    🩹 Allow for last non-servo extruder

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

    🐛 Fix move_extruder_servo (MarlinFirmware#24908)

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

    🐛 Fix FTDUI Status Screen Timeout (MarlinFirmware#24899)

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

    🩹 Fix spurious "bad command" (MarlinFirmware#24923)

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

    🩹 Fix M593 report

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

    🚸 Up to 3 MAX Thermocouples (MarlinFirmware#24898)

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

    🔧 Clean up unused ESP_WIFI pins

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

    🚀 ZV Input Shaping (MarlinFirmware#24797)

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

    🔨 gcc-12 for macOS native

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

    ✨ Controllerfan PWM scaling, kickstart (MarlinFirmware#24873)

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

    🚸 Probe pins for Chitu V5 (MarlinFirmware#24910)

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

    🔧 Some STM32 UART Sanity Checks (MarlinFirmware#24795)

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

    🎨 Misc. variant cleanup, translation

    Followup to MarlinFirmware#24787

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

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

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

    🔧 No Native USB on AVR (MarlinFirmware#24906)

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

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

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

    🎨 CONF_SERIAL_IS => SERIAL_IN_USE

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

    ✨ Tronxy v10 (MarlinFirmware#24787)

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

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

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

    🐛 Fix compile without Y/Z (MarlinFirmware#24858)

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

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

    🔧 Check Sensorless Homing on all axes (MarlinFirmware#24872)

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

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

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

    🎨 HAS_SPI_FLASH => SPI_FLASH

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

    🐛 Fix and improve Polargraph (MarlinFirmware#24847)

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

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

    🐛 Fix operators for V axis (MarlinFirmware#24866)

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

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

    🩹 Fix TFT LCD in Simulation (MarlinFirmware#24871)

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

    🎨 MMU2 cleanup

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

    🐛 Fix M876 without emergency parser

    Fix regression from 1fb2fff

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

    ✨ DOGM Display Sleep (MarlinFirmware#24829)

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

    🩹 Fix temperature include (MarlinFirmware#24834)

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

    🎨 Misc. variant cleanup

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

    🧑‍💻 Min and max for base types

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

    ✨ MKS SKIPR board (MarlinFirmware#24791)

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

    🔨 Update mfinfo for 2.1.x

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

    🧑‍💻 Min and max for base types

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

    ✨ ADVANCE_K per-extruder (MarlinFirmware#24821)

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

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

    ♻️ Set Progress without LCD (MarlinFirmware#24767)

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

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

    🩹 Fix Color UI touchscreen sleep (MarlinFirmware#24826)

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

    🩹 Fix Switching Toolhead compile (MarlinFirmware#24814)

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

    🧑‍💻 Einsy Rambo EXP headers (MarlinFirmware#24825)

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

    🔨 Detect feature parsing error (MarlinFirmware#24824)

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

    ✨ Creality v5.2.1 board (MarlinFirmware#24815)

    Followup to MarlinFirmware#24760

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

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

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

    🐛 Fix DUE compile and errors (MarlinFirmware#24809)

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

    🩹 Fix some vector_3 cast operators

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

    🔧 Update Creality 4.2.2 Driver Warning (MarlinFirmware#24806)

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

    🩹 Disable DEBUG_DGUSLCD (MarlinFirmware#24798)

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

    🎨 Remove non-const compare operators (MarlinFirmware#24810)

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

    ✨ Creality v5.2.1 board (MarlinFirmware#24760)

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

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

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

    ✏️ Followup for M524 (MarlinFirmware#24775)

    Followup to MarlinFirmware#24761

commit f1a05d1
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Mon Sep 26 22:18:15 2022 +0100

    🚸 UUID fallback to STM32 device SN (MarlinFirmware#24759)

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

commit a7a493d
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Sep 26 14:15:14 2022 -0700

    📌 Specify MarlinFirmware/U8glib (MarlinFirmware#24792)

commit d9967f5
Author: Renaud11232 <gaspardrenaud@hotmail.com>
Date:   Fri Sep 23 07:20:44 2022 +0200

    🔨 Fix LPC1768 autodetect path on Linux (MarlinFirmware#24773)

commit 5ee7466
Author: Stefan Kalscheuer <stefan@stklcode.de>
Date:   Fri Sep 16 21:21:13 2022 +0200

    ✨ Anycubic i3 Mega LCD file menu fix (MarlinFirmware#24752)

commit be14933
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ M217 G wipe retract length

commit 1f72c83
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ XY_COUNTERPART_BACKOFF_MM

commit 3d03f96
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ RGB_STARTUP_TEST

commit c996bfd
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Sep 2 03:04:46 2022 +0100

    ✨ Permit Linear Advance with I2S Streaming (MarlinFirmware#24684)

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to MarlinFirmware#24619
Tadej30 added a commit to Tadej30/Marlin that referenced this issue Jan 30, 2023
commit e7c4a868309f00656e28d1b2d3cda03913695073
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 23 01:10:16 2023 -0600

    🧑‍💻 Fix D5 warning

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

    🐛 Fix homing_needed_error

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

    🔧 Input Shaping sanity checks

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

    🩹 Fix Sim with USE_WATCHDOG disabled

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

    🔨 Improve config.ini parser

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

    🐛 Fix Chitu V6 Z_STOP_PIN (#25227)

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

    🚸 ProUI updates (#25176)

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

    🐛 Fix Neopixel 1 startup (#25203)

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

    🩹 Fix E3V2 MarlinUI XYZ frame (#25206)

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

    📝 Linux Sim apt-get line (#25208)

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

    📝 More native.ini docs (#25201)

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

    🩹 Update MKS_GEN_13 MOSFET pins (#25126)

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

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

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

    🩹 Fix missing IS_MELZI (#25190)

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

    🎨 Misc. cleanup (#25194)

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

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

    🚸 Attach USB media (#25120)

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

    🧑‍💻 Add Temperature::is_above_target

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

    🎨 Rename *_temp_error to *temp_error

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

    🩹 Remove extraneous EZBoard V1 autofans (#25182)

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

    🎨 Misc. IS cleanup

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

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

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

    🧑‍💻 Fix type warning (#25149)

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

    🔨 FILAMENT_RUNOUT_SCRIPT sanity check (#25150)

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

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

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

    🚸 Z Servo Probe is HAS_STOWABLE_PROBE (#25158)

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

    🩹 Remove extraneous EZBoard V2 autofans (#25166)

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

    🚸 Hide IS menu while busy

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

    🐛 Avoid lambda for menu items (#25169)

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

    🐛 Fix Mesh Bed Leveling Z correction (#25122)

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

    📝 Fix Configs URL (#25167)

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

    🧑‍💻 Fix ONBOARD_FLASH_SIZE

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

    🔖 Version 2.1.2

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

    📝 Update 2.1.x README

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

    🧑‍💻 M593 F "min" freq

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

    🐛 Fix Melzi encoder

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

    🩹 Fix LCD_FOR_MELZI with Tronxy Melzi

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

    🐛 Fix DOGM time overflow, alignment (#25103)

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

    🎨 Suppress warning (#25101)

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

    ✨ BTT Octopus with STM32-F407 (#25031)

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

    ✨ BigTreeTech EBB42 v1.1 (#24964)

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

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

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

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to #24619

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

    🩹 Fix M115_GEOMETRY_REPORT (#25092)

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

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

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

    🩹 Fix M502 init of default motion

    Fix regression from #25035

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

    🩹 Use custom I2C pins for OLED (#24970)

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

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

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

    ✨ TFT_COLOR_UI async DMA SPI (#24980)

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

    📝  Replace Twitter with Fosstodon

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

    🔧 Anycubic alternate Z1/Z2 wiring (#25071)

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

    ✨ JyersUI TMC Settings (#25048)

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

    🔧 Custom Menu Sanity Check (#25079)

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

    🔨 Updated 'mfconfig init'

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

    🔨 No env:mega1280 for MIGHTYBOARD_REVE (#25080)

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

    ⚡️ Better IS buffer size calc (#25035)

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

    ✨ Two controller fans (#24995)

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

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

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

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

    🚸 Progress display followup (#24879)

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

    ✨ M150 S default index (#23066)

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

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

    🔨 Return error on mftest exit

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

    📝 Update config comments

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

    🐛 Fix Fast PWM on AVR (#25030)

    Followup to #25005

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

    ✏️ Fix missing ) (#25055)

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

    🔨 Fix CI Test clean step (2)

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

    🎨 Misc. cleanup

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

    🔨 Fix CI Test clean step

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

    🐛 Fix TMC5160 + Input Shaping overcurrent (#25050)

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

    🩹 Ender 3v2 DWIN MarlinUI Fixup (#24984)

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

    🎨 Trailing whitespace

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

    🔨 Update renamed.ini (#25042)

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

    🩹 Fix MSG_MOVE_N_MM substitution (#25043)

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

    🚸 G30 move to logical XY (#24953)

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

    🎨 Misc. cleanup

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

    🧑‍💻 Use spaces indent for Python

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

    📝 Formatted Team Overview (#25029)

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

    🐛 Fix G-code resend race condition

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

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

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

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

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

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

    ⚡️ Input Shaping improvements (#24951)

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

    🐛 Fix missing va_end in UnwPrintf (#25027)

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

    🐛 Fix MILLISECONDS_PREHEAT_TIME / mintemp (#24967)

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

    🩹 Fix ADVANCE_K + DISTINCT_E_FACTORS sanity check (#25007)

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

    🔧 Merge TMC26X with TMC config (#24373)

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

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

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

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

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

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

    🩹 Fix UBL menu compile (#25020)

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

    🚸 Add 50mm manual move (#24884)

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

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

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

    🚸 COLOR_UI sleep timeout / setting (#24994)

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

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

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

    ✏️ Fix Robin nano env typo (#24993)

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

    📺 FYSETC_MINI_12864_2_1 with BTT_SKR_E3_DIP (#24986)

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

    🩹 Fix planner typo (#24977)

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

    🐛 MKS_MINI_12864 on SKR 1.3 needs FORCE_SOFT_SPI (#24850)

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

    🔧 Check Delta homing direction (#24865)

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

    🩹 Fix SERVICE_INTERVAL reset (#24888)

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

    Fix FAST_PWM_FAN / TouchUI with NO_MOTION_BEFORE_HOMING (#25005)

    Fix regressions from #20323, #23463

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

    🩹 Fix 2 thermocouples (#24982)

    Followup to #24898

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

    🐛 Fix M808 starting count

    Reported by adcurtin on Discord

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

    🩹 Fix Overlord compile (#24947)

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

    🚸 M306: Indicate MPC Autotune (#24949)

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

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

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

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

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

    🎨 Prefer axis element over index

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

    🩹 Fix EEPROM write for !LIN_ADVANCE

    Fixes #24963
    Followup to #24821

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

    🩹 MAX Thermocouple followup

    Followup to #24898

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

    🩹 leds.update needed for reset_timeout

    Followup to #23590

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

    🧑‍💻 More direct encoder spin

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

    🎨 Update SAMD51 headers

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

    🎨 Format some lib-uhs3 code

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

    📌 ZRIB V52-V53 Servo Pins (#24880)

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

    ✨ Tenlog MB1V23 IDEX board (#24896)

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

    🌐 Update Italian language (#24915)

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

    📌 Remove unused RX/TX pins (#24932)

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

    🔧 Update Display Sleep LCD Check (#24934)

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

    🩹 Buttons Followup (#24935)

    Followup to #24878

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

    🩹 Allow for last non-servo extruder

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

    🐛 Fix move_extruder_servo (#24908)

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

    🐛 Fix FTDUI Status Screen Timeout (#24899)

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

    🩹 Fix spurious "bad command" (#24923)

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

    🩹 Fix M593 report

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

    🚸 Up to 3 MAX Thermocouples (#24898)

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

    🔧 Clean up unused ESP_WIFI pins

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

    🚀 ZV Input Shaping (#24797)

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

    🔨 gcc-12 for macOS native

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

    ✨ Controllerfan PWM scaling, kickstart (#24873)

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

    🚸 Probe pins for Chitu V5 (#24910)

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

    🔧 Some STM32 UART Sanity Checks (#24795)

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

    🎨 Misc. variant cleanup, translation

    Followup to #24787

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

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

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

    🔧 No Native USB on AVR (#24906)

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

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

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

    🎨 CONF_SERIAL_IS => SERIAL_IN_USE

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

    ✨ Tronxy v10 (#24787)

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

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

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

    🐛 Fix compile without Y/Z (#24858)

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

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

    🔧 Check Sensorless Homing on all axes (#24872)

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

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

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

    🎨 HAS_SPI_FLASH => SPI_FLASH

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

    🐛 Fix and improve Polargraph (#24847)

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

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

    🐛 Fix operators for V axis (#24866)

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

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

    🩹 Fix TFT LCD in Simulation (#24871)

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

    🎨 MMU2 cleanup

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

    🐛 Fix M876 without emergency parser

    Fix regression from 1fb2fffdbf

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

    ✨ DOGM Display Sleep (#24829)

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

    🩹 Fix temperature include (#24834)

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

    🎨 Misc. variant cleanup

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

    🧑‍💻 Min and max for base types

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

    ✨ MKS SKIPR board (#24791)

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

    🔨 Update mfinfo for 2.1.x

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

    🧑‍💻 Min and max for base types

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

    ✨ ADVANCE_K per-extruder (#24821)

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

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

    ♻️ Set Progress without LCD (#24767)

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

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

    🩹 Fix Color UI touchscreen sleep (#24826)

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

    🩹 Fix Switching Toolhead compile (#24814)

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

    🧑‍💻 Einsy Rambo EXP headers (#24825)

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

    🔨 Detect feature parsing error (#24824)

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

    ✨ Creality v5.2.1 board (#24815)

    Followup to #24760

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

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

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

    🐛 Fix DUE compile and errors (#24809)

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

    🩹 Fix some vector_3 cast operators

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

    🔧 Update Creality 4.2.2 Driver Warning (#24806)

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

    🩹 Disable DEBUG_DGUSLCD (#24798)

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

    🎨 Remove non-const compare operators (#24810)

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

    ✨ Creality v5.2.1 board (#24760)

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

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

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

    ✏️ Followup for M524 (#24775)

    Followup to #24761

commit f1a05d19b0886921cbe3529a22bcf796c174bc4a
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Mon Sep 26 22:18:15 2022 +0100

    🚸 UUID fallback to STM32 device SN (#24759)

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

commit a7a493d795fcb9d77cbbe284aea1f5aa3978845a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Sep 26 14:15:14 2022 -0700

    📌 Specify MarlinFirmware/U8glib (#24792)

commit d9967f5395e3f223bd2cf99249f2f6058d907620
Author: Renaud11232 <gaspardrenaud@hotmail.com>
Date:   Fri Sep 23 07:20:44 2022 +0200

    🔨 Fix LPC1768 autodetect path on Linux (#24773)

commit 5ee74668cf48a72736ffa8a1dfd6ca1fa6644eeb
Author: Stefan Kalscheuer <stefan@stklcode.de>
Date:   Fri Sep 16 21:21:13 2022 +0200

    ✨ Anycubic i3 Mega LCD file menu fix (#24752)

commit be149336f0192777e835396a856bd836c10aea35
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ M217 G wipe retract length

commit 1f72c8341f33a6ea7e086ad4f94b0bc903ad2ba3
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ XY_COUNTERPART_BACKOFF_MM

commit 3d03f96205cac22d9061293b8703e5a3271ed420
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ RGB_STARTUP_TEST

commit c996bfddb7775f9160e33443df8c103de003339f
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Sep 2 03:04:46 2022 +0100

    ✨ Permit Linear Advance with I2S Streaming (#24684)

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to #24619

commit 29156ffe5d16afeb78fac434197155e8a04f0629
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 9 20:54:17 2022 -0600

    🐛 Fix recalculate_max_e_jerk

commit eff60964da6e1b5d74f342de84f47344f96f201d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Sep 23 17:16:01 2022 +1200

    🐛 Fix VW axis fields in types.h (#24780)

commit 5fe1f6647875b2f325db52b74f356bdaec19dce5
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Thu Sep 1 21:16:52 2022 +0200

    🚸 Strict index 2 for M913 / M914 XY (#24680)

commit 2fc97aa240f17c9c2429e65c0110ceddb7af4132
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Sun Sep 18 03:51:37 2022 +0200

    🚸 Emergency Parse M524 (#24761)

commit aa283582677fbbcb7ffe5f3183ac0bf5028747c3
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Sep 4 02:51:53 2022 +0200

    🐛 Fix / refactor shared PID (#24673)

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

commit e04e18a5902958c9a200ff67b3fba6c730524bf3
Author: Chris Bagwell <chris@cnpbagwell.com>
Date:   Fri Sep 16 13:30:04 2022 -0500

    🧑‍💻 STM32G0B1RE Pins Debugging (#24748)

commit bdb7f3af3f4008c2a6d209d4cb3d679863718ad7
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Tue Sep 13 20:31:59 2022 +0300

    🩹 Fix MKS TinyBee + MKS MINI 12864 SD blank on write (#24670)

commit 2f24c3145458b60e091714e18629253eac3d7d1f
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Tue Sep 13 20:29:59 2022 +0300

    🚸 Sanity check Integrated Babystepping + I2S stream + ESP32 (#24691)

commit 96d050c7ba4c1f3dccf1278eb2eb6c6b4dab4a99
Author: George Fu <nailao_5918@163.com>
Date:   Wed Sep 14 01:28:38 2022 +0800

    ✨ FYSETC SPIDER KING407 (#24696)

commit aabd3e9e196ccbe04f94a26cd25e4d3508c262f9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Sep 14 05:27:16 2022 +1200

    ✨ BTT SKR Mini E3 V3.0.1 (#24722)

commit 38b31059003110ae0cb2dcc3270620e69954a3d7
Author: XDA-Bam <1209896+XDA-Bam@users.noreply.github.com>
Date:   Fri Sep 9 22:51:11 2022 +0200

    ⚡️ Minor planner optimization (#24737)

commit 02810616cc08ea14c6257578061d61c492fb8673
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Tue Sep 6 08:48:42 2022 +0200

    🚸 On pause report "SD printing byte X/Y" (#24709)

commit 7daff755f2899d4cbe24aa038b1e32d9369692c9
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Thu Sep 1 20:48:24 2022 +0200

    🩹 Report M22 / M23 success / fail (#24706)

commit 53564fb6f3d1c1cf4421329a2f729dab22f3f8e1
Author: Gurmeet Athwal <gurmeet.athwal@gmail.com>
Date:   Sat Sep 10 00:51:19 2022 +0530

    🚸 M115 spindle/laser (#24681, #24747)

commit 9d9f303c5eb4be828a9ddc0a26fc7a5a726521da
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Sep 23 05:20:17 2022 +1200

    📺 FYSETC Mini 12864 2.1 pins for Creality V4 (#24624)

commit b9428bf0876944e163bc83a00f6dabbb48e8b472
Author: FBN <62633887+fBn0523@users.noreply.github.com>
Date:   Fri Sep 16 07:02:08 2022 +0800

    🚸 More automatic MMU2 load (#24750, #24770)

commit 0642cd8a8352cd8a34d9d9354162a4478515554c
Author: Yuri D'Elia <wavexx@users.noreply.github.com>
Date:   Thu Sep 22 18:54:26 2022 +0200

    👷 Array macros to …26 elements (#24789)

commit d2b1467ab36974b65a3cb50ea7b6ca626c60a327
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 9 19:31:47 2022 -0500

    🌐 Some short menu strings

commit 03aba439f67410e73101f83010c07387ab0ef828
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Sep 9 12:22:52 2022 -0700

    ⚡️ Only Sync Emulated EEPROM Print Counter (#24731)

commit 85a47d61e62713c00f2512415701631e3c53b78f
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Fri Sep 9 20:54:29 2022 +0200

    🐛 Fix heater timeout PID output (#24682)

commit 78577b13cbe5d5aaca5a3eb58b7aeb472077f00d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 6 23:03:15 2022 -0500

    🧑‍💻 Microsteps to stepper.cpp

commit b29cd4c510632fd43fb0ff59cf69e9979ef94d25
Author: hartmannathan <59230071+hartmannathan@users.noreply.github.com>
Date:   Fri Sep 9 16:35:16 2022 -0400

    📝 Fix example comment (#24744)

commit 0eb6a8d12e1f73eab7cef4090137f6e0cf7c7031
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 6 22:06:13 2022 -0500

    📝 Fix comment

commit 8a8218a8f22f3942bbec3f22f43529b3c489603a
Author: JoaquinBerrios <JoaquinBerrios@users.noreply.github.com>
Date:   Tue Sep 6 01:39:02 2022 -0500

    ⚡️ BTT SKR V3.0 / EZ = 480MHz (#24721)

commit 3a18ba04125dad983d232ef02d045c28a27c5c36
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 13 13:29:50 2022 -0500

    🔨 Fix config-labels.py

commit 2828f1d1dbddf908968951af3b09586369dc4135
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 27 20:12:52 2022 -0500

    🔨 Outdent py string

commit 63507acf98e94ceffa4e82d588d6ec369f2b7646
Author: dmitrygribenchuk <dmitrygribenchuk@gmail.com>
Date:   Mon Sep 5 21:19:19 2022 +0300

    🔨 Clean up Python imports (#24736)

commit cc2cc7d08170e4778f1aa76eb38172e1b7dc8978
Author: ButchMonkey <ButchMonkey@users.noreply.github.com>
Date:   Mon Sep 5 05:48:58 2022 +0100

    🔨 Fix config.ini custom items, and 'all' (#24720)

commit b676b43874c9f851902a0f80a2013bf19d9b0820
Author: ButchMonkey <ButchMonkey@users.noreply.github.com>
Date:   Sun Sep 4 21:10:22 2022 +0100

    🔨 Fix configuration.py with encoding UTF-8 (#24719)

    - Opening files with Windows-1252 encoding.

commit 2f1b89bd1f4ae88e9b1b9e62ea567ac3a4d1178a
Author: Stephen Hawes <sphawes@gmail.com>
Date:   Sat Sep 3 21:55:37 2022 -0400

    ✨ Opulo LumenPnP REV04 (#24718)

commit 1a2e591d03ff3648a5913e1a0a6a672cfd4bba81
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Sep 3 16:48:21 2022 -0700

    🔨 Update SKR 3 env (#24711)

commit dc65e299fa2860c254b113a160f7c41c1220558d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 3 18:21:23 2022 -0500

    📝 Format some comments

commit 033bca17737964ebb95c76a69e7e2005738f9c35
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Fri Sep 2 05:47:37 2022 +0300

    🔨 Native USB modified env followup (#24669)

    Followup to #24619

commit e350acb360a7d6645bf2b3938ac82720c1475de2
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Thu Sep 22 12:54:49 2022 -0500

    🐛 Fix UBL regression (#24622)

    Fix regression from #24188

commit 7d8d2e2c587e951c944eb7e399767dbc8432e62d
Author: Ruedi Steinmann <ruediste@gmail.com>
Date:   Fri Sep 9 22:33:54 2022 +0200

    🩹 Fix a BUZZ (#24740)

commit 3c6b3e5af41202be8781645bb07cc8cee9206b49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 29 19:23:53 2022 -0500

    🔖  Config version 02010200

commit d5e9b25a3121724556ce231967c3e1069afa126b
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Tue Aug 30 02:52:02 2022 +0300

    🐛 Fix back button (#24694)

commit 9313c2fd18ef6255437e7ae3b0d68d0349242d00
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 25 23:45:07 2022 -0500

    ✏️ Fix http:// links

commit d8a280bf53a163d08a99e2c518ecd68f6b0be601
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Fri Aug 26 07:40:31 2022 +0300

    ✏️ Fix LCD sleep conditional (#24685)

commit d244389998863aa2d37b0c903aebfcda80930a01
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Aug 25 23:23:54 2022 -0500

    🩹 Constrain UBL within mesh bounds (#24631)

    Fixes #24630

commit d140be0281b9903e4759e3bfadecaa0979cdbc09
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Aug 25 16:14:50 2022 -0700

    🚸 Up to 10 Preheat Constants (#24636)

commit 27bea5602588c51862b788344c264f10a2486345
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Aug 26 11:07:41 2022 +1200

    🔧 Fix Auto-Fan / Controller-Fan pin conflict check (#24648)

commit 98ee3fc2b5b3bfef9a29aaccddcefb7dae60daa1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Aug 26 10:51:11 2022 +1200

    🩹 Fix PID debug output (#24647)

commit e8394c391ef7bcdf62d268d7ab453e8ad7a1e743
Author: Mark <niujl123@sina.com>
Date:   Fri Aug 26 06:50:03 2022 +0800

    🐛 Fix Bed Distance Sensor reading (#24649)

commit e24d5f931518fd6644d5d50dcce908e903550963
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Fri Aug 26 00:14:54 2022 +0200

    ✨ M20_TIMESTAMP_SUPPORT (#24679)

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

commit ef1cf0d5a188fcff37c056ce8d64348c2e4e225e
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Aug 25 20:16:55 2022 +0300

    ♻️ Display sleep minutes, encoder disable option (#24618)

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

commit f088722ae80d5ba9e032b029e1f69a12e3d4e900
Author: DejitaruJin <dejitarujin@gmail.com>
Date:   Thu Aug 25 13:10:43 2022 -0400

    🩹 Fix SainSmart LCD (#24672)

commit 68c5e97fd7574841ac32cd929b6b1e8b44d1cb61
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Aug 25 10:08:03 2022 -0700

    🩹 Fix Freeze Feature (#24664)

commit a8cf886aa5d4c6a65a41b93b49ed5504b8fc4691
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Thu Aug 25 19:48:35 2022 +0300

    🔨 Suppressible Creality 4.2.2 warning (#24683)

commit a31e65e30b0d71da113db8540a8c49aa3f07034c
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Mon Aug 22 18:31:02 2022 +0300

    ✨ Robin Nano v1 CDC (USB mod) (#24619)

commit d94a41527f8c00241d31eb82c0d0b0ef380269c0
Author: Alexey Galakhov <agalakhov@gmail.com>
Date:   Mon Aug 22 17:11:53 2022 +0200

    🐛 Fix JyersUI (#24652)

commit 37a7da075f415b361daa25b95e37b1acf88ea0c0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Aug 22 07:53:51 2022 -0700

    🔧 Fix Skew Correction defaults (#24601)

commit 5145266b0db80f52b81d3060082498960664445a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 20 06:41:00 2022 -0500

    🎨 Some automated cleanup

commit bdd5f3678eff031d098f22a92b0d097bac3a41b3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Aug 19 11:37:43 2022 -0700

    📺 Add to MKS UI About Screen (#24610)

commit b4af335b7ab1bedd011335ea06bfb1d1c2928c03
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Aug 19 11:11:15 2022 -0700

    🔧 Remove STM32F4 Print Counter Sanity Check (#24605)

commit cfe1d52bf247f5152e51f87ff7d770c0aef63a56
Author: Protomosh <43253582+Protomosh@users.noreply.github.com>
Date:   Fri Aug 19 20:57:27 2022 +0300

    🐛 Fix DGUS Reloaded + STM32 (#24600)

commit ff09ea13a4ef86d810ebb69eb08933c448c9e32c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 19 11:00:52 2022 -0500

    🧑‍💻 Use spaces indent for Python

commit d93c41a257bbc1097d4fbaba4cfd5ddd54be71a8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 9 07:58:20 2022 -0500

    🔨 Misc. schema updates

commit 98e6aacbefb87489c3e79fa5735834a018ce0d9e
Author: Graham Reed <greed@7deadly.org>
Date:   Fri Aug 19 16:48:27 2022 +0100

    🔨 Fix LPC1768 automatic upload port (#24599)

commit 0adee8fae008660895c9f993021ca3c68a173312
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 18 13:03:17 2022 -0500

    🩹 Fix strtof interpreting a hex value

    Bug introduced in #21532

commit c154302ece49db7e93aef6984d7159d89f36cee2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 17 07:32:08 2022 -0500

    🔨 Add args to schema.py

commit b5ccddbe353827cea3619e9efb38e68582e37161
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 16 09:41:45 2022 -0500

    🎨 Fix '…if_chain' Uncrustify option

commit d69893309e56423d0b951cb5064b3719800f0a2d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 8 06:42:46 2022 -0500

    🔨 Misc. config py updates

commit fc3ea96ff982bc4dff554142a88b9b00f2286335
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 11 12:41:41 2022 -0500

    🧑‍💻 Add operator== for C++20

commit 3892d08b06ce3c24be5d0d9c150e0ab035ba9ff0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Aug 11 11:35:36 2022 -0700

    🧑‍💻 Fix UBL Build Mesh preheat items (#24598)

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

commit 857dc73be5bdae32e304656245e0db3dd5d49650
Author: Ivan Kravets <me@ikravets.com>
Date:   Sat Aug 6 09:17:46 2022 +0300

    🔨 Fix a PlatformIO debug issue (#24569)

commit 419a145fa30dc01315d5b6b69f76253b21bd7a9b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 7 20:42:12 2022 -0500

    🔨 Update schema export

commit 398cae762506a43eb27a815f10bee6e2821c6c5f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 6 18:39:05 2022 -0500

    🔖 Version 2.1.1

commit 8192cc12d33fb860fff55ea68f5df9c9058b0293
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 6 18:38:12 2022 -0500

    🎨 Misc. config cleanup

commit 7f2a8362517181cde5b98bf88aa48821355f7692
Author: ExtNeon <33217029+ExtNeon@users.noreply.github.com>
Date:   Sat Aug 6 23:37:03 2022 +0000

    ✨ SD Endstop Abort G-Code (#24461)

commit b02c3258b56f73ae6cff17d7e47c9e1fba7c91cd
Author: Mark <niujl123@sina.com>
Date:   Sat Aug 6 14:14:58 2022 +0800

    ✨ Bed Distance Sensor (#24554)

commit a0462eb01738516561ea9356ebcafcb523782457
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Aug 5 22:59:56 2022 -0700

    🩹 Fix AUTO_FAN_PIN sanity check (#24593)

commit a1704c10b977d31d2bb90cafe4935f3bdbfc3c89
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 6 00:57:37 2022 -0500

    🩹 G0/G1 S seen => seenval

commit 7196f1312508bdb04d8e943572773a5f23c8509e
Author: qwertymodo <qwertymodo@gmail.com>
Date:   Fri Aug 5 22:07:30 2022 -0700

    ✨ M150 K – Keep unspecified components (#24315)

commit e06340abd13822fe54a1c0be5be57421b03490ef
Author: J.C. Nelson <32139633+xC0000005@users.noreply.github.com>
Date:   Fri Aug 5 22:09:46 2022 -0700

    🔨 Trigorilla Pro disk based update (#24591)

commit 98095ddad6818c1fd9dfca214d09f5107633106b
Author: Travis Ziegler <travisjayday@gmail.com>
Date:   Fri Aug 5 22:37:24 2022 -0400

    🩹 Fix LPC176x USB Host Shield (#24588)

commit 2f4b12170924d0090bcfd5a39e153c27cf44d8d9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 5 19:39:41 2022 -0500

    👔 Keep "Needs: More Data" open

commit a0409289c8815e71b34eae1a09687229ed4e93b6
Author: Ruedi Steinmann <ruediste@gmail.com>
Date:   Fri Aug 5 01:00:19 2022 +0200

    🚸 Laser with only PWM pin (#24345)

commit 2ccdc4f9ed232af3b55fe633fafe64a9be508ff8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 4 17:56:09 2022 -0500

    🧑‍💻 MARLIN_TEST_BUILD – for future use (#24077)

commit bbf20332112948aad99bb8c7fba27fd661dc3a3a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 4 02:38:15 2022 -0500

    🔧 Config INI, dump options (#24528)

commit 9a42d1e577a364d6f4491657d1eabb92f14ed55a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 4 01:17:10 2022 -0500

    🩹 Fix Malyan M300 with S-Curve compile

    Fixes #24548

commit 17794e18ae66793e0a4d6135de674d92e3d4b3d0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Aug 1 18:17:57 2022 +1200

    🔧 Update 644p/1284p Serial 1 sanity check (#24575)

commit 3b30951e83f0ec189c38ec993e5002f16556e087
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 1 01:14:58 2022 -0500

    🔨 Simplify scripts with pathlib (#24574)

commit c3f258644541cc81150e5e306aa3db60a31fc5bf
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Aug 1 01:03:45 2022 -0500

    🐛 Fix laser menu enable_state (#24557)

commit c0cb7e35afe4a2e94133506d0e7c1d95ddbf80ba
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Jul 30 22:55:32 2022 -0400

    ✨ Configurable Switching Nozzle dwell (#24304)

commit fd319928d2889efe57c76913b3d5d28ff49a70d1
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Jul 31 03:39:48 2022 +0100

    Fix, improve Linear Advance (#24533)

commit 5dad7e0d035ec82d2eeb38c79101cba93f35c958
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Jul 31 03:05:16 2022 +0100

    🩹 Use _MIN/_MAX macros for native compatibility (#24570)

commit 9ee558afe1afc20e5e932fc0dcbecd7744065ec7
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sun Jul 31 03:49:15 2022 +0200

    🐛 Fix kinematic feedrate (#24568)

commit bbaccd342eaf5e4cdca6b988c367fa79faacab82
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Jul 30 17:51:25 2022 -0700

    ✨ Encoder Noise Filter (#24538)

commit 6134d55360b8155435bb2ed10f51704268f5450f
Author: lukasradek <lukasradek@users.noreply.github.com>
Date:   Sat Jul 30 01:53:39 2022 +0200

    📝 README Updates (#24564)

commit 868e76b96543ca5282558396c679d7e81d29df49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 29 08:01:39 2022 -0500

    🎨 Renum boards.h

commit 5f105e254dfa6c4280f2a3c276bdb8587cc4c152
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 29 02:14:14 2022 -0500

    🐛 Fix M125 for 9 Axis

commit 9534c6e9033256f5d6de2b920124acf1fa829548
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit ec9a2ee55711555bb1489e492120398a34ed52c5
Author: Ludy <Ludy87@users.noreply.github.com>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit d8db00e31febec6fa1a71e5ead6f0bff849fe15a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit e7c262dc30cd921d6dc1da7ec494adacb43ed5f8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit cee9da6132f9a02eea55522ad0342359f6cec26f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit a24b9e16ff372a7b777fd72aad8c3d567ca07018
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit 1e9232723d71ea6383969151809af3df9aea3571
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit 66369f8236c843bc933d42fc84d057bbbfe876e9
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 25 11:48:59 2022 -0700

    🩹 Fix JyersUI include (#24540)

commit 0ca76bf9ed4a5386b49943bd9c9bbf9951db4ff8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit 0f3c3c419e565bd16a86fbbd0a240ec55e0ae769
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 21:59:00 2022 -0500

    ✨ Reinstate JyersUI

commit 89e9ae06625d6244f172f6aac628d1001abf92e7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 17 22:19:24 2022 -0500

    🧑‍💻 Give the simulator Stepper access

commit 5b8f7686cb1d514bcddb34aaddee24f6140a97e3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 19:30:29 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 6e02f15dd6afffb761da2516a3764a64567a8583
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 21 04:18:17 2022 -0500

    🔨 Minor build script changes

commit c9445cfc4120ab9bcf47bdd2deffb59bcd901cad
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image PACKED conflict

commit beacb73d93259486f66a6baf8f5809b3d0807531
Author: Frederik Kemner <stuff+github@fredo.org>
Date:   Wed Jul 20 23:25:15 2022 +0200

    🩹 Fix gcode.h include (#24527)

commit 53a57ff7bf807684af09b69cd1a3e5713394e544
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit d726f641a571b13b7d55307bf50a253a49883d25
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 20 16:26:33 2022 -0500

    EXP header pin numbers redux (#24525)

    Followup to 504fec98

commit feafa321d7caa90f886ef7d66f6b0513d5c595e3
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Jul 19 18:33:49 2022 -0400

    🚸 Use Tool 0 for G30 (#24511)

commit f5b972bb103bcac57d3c8bd26f80d93e3f86a5f8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 196795c0cc1ea31380d4c06374cf032a25e47c1d
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Wed Jul 20 01:30:19 2022 +0300

    ✅ More ESP32 (MKS TinyBee) tests (#24493)

commit c3085d666ffba28c67890bfc4424c30855188048
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 18 18:14:58 2022 -0700

    📝 Update Contributing Guide (#24320)

commit 807f2ef9697c241fdb8c354d90ca97050ccbca68
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

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

commit f752fe75ee6e4304741c743fbb2b52b7d5760ae4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 97a73147fa47119d5600c28dd7bfc549a390e53f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 915203f545f6d3114a5965a19125545f5592c42e
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Jul 18 06:51:44 2022 +0100

    🩹 Arc/Planner optimization followup (#24509)

commit 173eb3ff715535e1144de9961700363dc5780884
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Renumber EXP pins to match schematics/RRF/Klipper

commit 96d3c66b646c89115be4a6c27d8908bedd8dbfb7
Author: Nikolay-Po <54221205+Nikolay-Po@users.noreply.github.com>
Date:   Sat Jul 16 03:56:15 2022 +0300

    ✨ Steinhart-Hart C Coeff for Custom Thermistor (#24428)

commit cc4fc28fe09eefe9a04c5521c47fa8ed796d8594
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484)

commit 0a164a88fee6537d98ddaf6e1ef49dbfea813aaa
Author: Arthur Masson <arthur.sw@gmail.com>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit c72fe1a2f96805e56798c926856602797fe6033c
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Sat Jul 16 03:14:15 2022 +0200

    🩹 Add'l ProUI fixes (#24500, #24508)

commit 2add8ca4eb962debc9f5a9c4a2670205cf58f10a
Author: Christophe Huriaux <c.huriaux@gmail.com>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 779c24122dc8ab079241b87c76861bd3e08d5906
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 17:16:37 2022 -0500

    🔨 Update mfprep comment

commit 6ac3f2738ea07c02f5c0629958828b1b4c807482
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit 77c6d9af201fcc6298184c763186ac3b8c4c6ecb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 16:01:24 2022 -0500

    🩹 Fix TFT tImage struct packing

commit 929e12bf498ca6e6b0da60a1c4cd62e7dfebff57
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Sat Jul 16 03:11:47 2022 +0200

    🔨 Remove log2file monitor filter (#24502)

commit fd18ac56672a88df54c2597d265e4e0857c66b24
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 06c1409843687da76f845e9a35cd3dac16c33be1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ec95e66ff04e8f9c1fa48fc266b53e769a1109c8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 12:48:05 2022 -0500

    🔧 Base NUM_AXES on defined DRIVER_TYPEs (#24106)

commit 53ee7fce5bb0cb1630ed26d63bd5ce9efee53603
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 10f5f878ce3c29b77e45b7e0f1850fcb855bc848
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 733ca940c0ed582fcd0e0a39b10b1fe8986b574c
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit c880c7ed45540a375a8fb82d7c343d21a1c9060b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit e5e4cf920d406c45a66d00cd379fee08f4da0985
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 13 23:31:47 2022 -0700

    📌 Pin ESP32SSDP to 1.1.1 (#24489)

commit 3315f6faa4fed3fde158013c8575d6bc6b813f3d
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 4a6ad1c98bde764255511c5bce58740b6e5cfb13
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Thu Jul 14 07:03:27 2022 +0200

    🩹 Fix ProUI LED compile (#24473)

commit 3c9789fda810cb6cebfb835379780b27e1dbe6f5
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 3a19d34c7515598180abbc3e24d8991f8e8a098a
Author: toomuchwonder <43323256+toomuchwonder@users.noreply.github.com>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit 6b19a58f035862292a3ec52b4efc388b746d69ad
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Wed Jul 13 22:16:22 2022 -0500

    🔥 Drop STM L64** drivers, STEVAL_3DP001V1 (#24427)

commit 9283859b1ef82d7aa82bcb64a70d1b25b8e6d22c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit e840015cad0bbbf882e0b90cb8d722725c6e1dd2
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Thu Jul 14 03:25:35 2022 +0200

    🔨 Abort firmware update on transfer error (#24472, #24499)

commit efe04e10168a21f361a325a8c93840c2562042e0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 12 13:25:36 2022 -0500

    🧑‍💻 Update Mac Sim directions

commit f543b3cb84e26c7594b9be2da1bcfc3c7c2b5a60
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 12 13:02:54 2022 -0500

    📌 Ask for PlatformIO 6.1.1 or newer (#24435)

commit 6a86c5bad32da03b71c5f0223904b44e129185f0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 7207a324341c3aaa8de8f103391576b274830c2d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 678474d55cd92d14bde24d00dbc9322919cfc1e1
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 24c211307d5a1d009d12c4d25d3828c05534f3e7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit 0c78a6f65791e1c2c3f4278ed2b48bcf20b9b063
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit 79a332b57ea4a1ddb0e6b06d8dabae34268ed3bd
Author: Jason Smith <jason.inet@gmail.com>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit d9ecbdcdbb8f5073987c848573d89cfb63719201
Author: Pauli Jokela <pauli.jokela@didstopia.com>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit 527fe2496af924c47411c7aa3c3622b22d04b42e
Author: Farva42 <100859196+Farva42@users.noreply.github.com>
Date:   Wed Jul 6 19:40:09 2022 -0600

    ✨ MAG_MOUNTED_PROBE (#24420)

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

commit 6c2ffe9d341f8f61bca8e19b07c3fc6a1d904375
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 6 19:34:45 2022 -0500

    🔥 Remove JyersUI (#24459)

commit 0fdedfa2fb46d665fbd5686bc58e7126ee82bd97
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 6 19:29:07 2022 -0500

    📝 Configurations 02010100 (#24458)

commit e93a1dd2fae37457894bf04b30e1c8ad5801b35c
Author: Meilleur Gars <98503100+LCh-77@users.noreply.github.com>
Date:   Wed Jul 6 13:46:11 2022 -0700

    🚸 JyersUI updates (#24451)

commit 03760fd79ea7f020f8739647f7a420bf4ec286b7
Author: Christophe Huriaux <c.huriaux@gmail.com>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit d3aed23e18bd9b165282ad83ef86422510af55c0
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Wed Jul 6 08:35:08 2022 -0500

    🐛 Fix Sensorless Probing compile (#24455)

commit 893707711e2a507aa48e41c3c59a267f9aea238f
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit d965303a7a1592e348853c1620cf54576652ace8
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit 5b6c46db2910b3ec651793d8cb0c1d1b08a39384
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Rever…
synman added a commit to synman/Marlin that referenced this issue Feb 2, 2023
commit 7bf5825ca3598fd08fe0ece771443c05a55f743e
Author: Shell M. Shrader <shell@shellware.com>
Date:   Wed Feb 1 19:11:34 2023 -0500

    merge followup

commit de08710cd6f831b7b5a672aaf7db4173acf756b3
Merge: 3be967bcb4 a1d31ff246
Author: Shell M. Shrader <shell@shellware.com>
Date:   Wed Feb 1 19:11:31 2023 -0500

    Merge branch '2.1.2-ender' into bugfix-2.1.x-merge

commit a1d31ff246bff2ad997157b8898a86eb7f5d5126
Author: Shell M. Shrader <shell@shellware.com>
Date:   Wed Feb 1 15:48:27 2023 -0500

    baseline

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

    🔖 Version 2.1.2

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

    📝 Update 2.1.x README

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

    🧑‍💻 M593 F "min" freq

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

    🐛 Fix Melzi encoder

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

    🩹 Fix LCD_FOR_MELZI with Tronxy Melzi

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

    🐛 Fix DOGM time overflow, alignment (#25103)

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

    🎨 Suppress warning (#25101)

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

    ✨ BTT Octopus with STM32-F407 (#25031)

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

    ✨ BigTreeTech EBB42 v1.1 (#24964)

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

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

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

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to #24619

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

    🩹 Fix M115_GEOMETRY_REPORT (#25092)

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

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

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

    🩹 Fix M502 init of default motion

    Fix regression from #25035

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

    🩹 Use custom I2C pins for OLED (#24970)

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

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

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

    ✨ TFT_COLOR_UI async DMA SPI (#24980)

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

    📝  Replace Twitter with Fosstodon

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

    🔧 Anycubic alternate Z1/Z2 wiring (#25071)

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

    ✨ JyersUI TMC Settings (#25048)

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

    🔧 Custom Menu Sanity Check (#25079)

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

    🔨 Updated 'mfconfig init'

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

    🔨 No env:mega1280 for MIGHTYBOARD_REVE (#25080)

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

    ⚡️ Better IS buffer size calc (#25035)

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

    ✨ Two controller fans (#24995)

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

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

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

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

    🚸 Progress display followup (#24879)

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

    ✨ M150 S default index (#23066)

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

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

    🔨 Return error on mftest exit

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

    📝 Update config comments

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

    🐛 Fix Fast PWM on AVR (#25030)

    Followup to #25005

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

    ✏️ Fix missing ) (#25055)

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

    🔨 Fix CI Test clean step (2)

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

    🎨 Misc. cleanup

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

    🔨 Fix CI Test clean step

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

    🐛 Fix TMC5160 + Input Shaping overcurrent (#25050)

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

    🩹 Ender 3v2 DWIN MarlinUI Fixup (#24984)

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

    🎨 Trailing whitespace

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

    🔨 Update renamed.ini (#25042)

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

    🩹 Fix MSG_MOVE_N_MM substitution (#25043)

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

    🚸 G30 move to logical XY (#24953)

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

    🎨 Misc. cleanup

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

    🧑‍💻 Use spaces indent for Python

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

    📝 Formatted Team Overview (#25029)

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

    🐛 Fix G-code resend race condition

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

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

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

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

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

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

    ⚡️ Input Shaping improvements (#24951)

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

    🐛 Fix missing va_end in UnwPrintf (#25027)

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

    🐛 Fix MILLISECONDS_PREHEAT_TIME / mintemp (#24967)

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

    🩹 Fix ADVANCE_K + DISTINCT_E_FACTORS sanity check (#25007)

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

    🔧 Merge TMC26X with TMC config (#24373)

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

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

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

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

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

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

    🩹 Fix UBL menu compile (#25020)

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

    🚸 Add 50mm manual move (#24884)

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

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

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

    🚸 COLOR_UI sleep timeout / setting (#24994)

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

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

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

    ✏️ Fix Robin nano env typo (#24993)

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

    📺 FYSETC_MINI_12864_2_1 with BTT_SKR_E3_DIP (#24986)

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

    🩹 Fix planner typo (#24977)

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

    🐛 MKS_MINI_12864 on SKR 1.3 needs FORCE_SOFT_SPI (#24850)

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

    🔧 Check Delta homing direction (#24865)

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

    🩹 Fix SERVICE_INTERVAL reset (#24888)

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

    Fix FAST_PWM_FAN / TouchUI with NO_MOTION_BEFORE_HOMING (#25005)

    Fix regressions from #20323, #23463

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

    🩹 Fix 2 thermocouples (#24982)

    Followup to #24898

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

    🐛 Fix M808 starting count

    Reported by adcurtin on Discord

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

    🩹 Fix Overlord compile (#24947)

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

    🚸 M306: Indicate MPC Autotune (#24949)

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

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

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

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

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

    🎨 Prefer axis element over index

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

    🩹 Fix EEPROM write for !LIN_ADVANCE

    Fixes #24963
    Followup to #24821

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

    🩹 MAX Thermocouple followup

    Followup to #24898

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

    🩹 leds.update needed for reset_timeout

    Followup to #23590

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

    🧑‍💻 More direct encoder spin

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

    🎨 Update SAMD51 headers

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

    🎨 Format some lib-uhs3 code

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

    📌 ZRIB V52-V53 Servo Pins (#24880)

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

    ✨ Tenlog MB1V23 IDEX board (#24896)

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

    🌐 Update Italian language (#24915)

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

    📌 Remove unused RX/TX pins (#24932)

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

    🔧 Update Display Sleep LCD Check (#24934)

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

    🩹 Buttons Followup (#24935)

    Followup to #24878

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

    🩹 Allow for last non-servo extruder

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

    🐛 Fix move_extruder_servo (#24908)

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

    🐛 Fix FTDUI Status Screen Timeout (#24899)

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

    🩹 Fix spurious "bad command" (#24923)

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

    🩹 Fix M593 report

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

    🚸 Up to 3 MAX Thermocouples (#24898)

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

    🔧 Clean up unused ESP_WIFI pins

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

    🚀 ZV Input Shaping (#24797)

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

    🔨 gcc-12 for macOS native

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

    ✨ Controllerfan PWM scaling, kickstart (#24873)

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

    🚸 Probe pins for Chitu V5 (#24910)

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

    🔧 Some STM32 UART Sanity Checks (#24795)

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

    🎨 Misc. variant cleanup, translation

    Followup to #24787

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

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

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

    🔧 No Native USB on AVR (#24906)

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

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

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

    🎨 CONF_SERIAL_IS => SERIAL_IN_USE

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

    ✨ Tronxy v10 (#24787)

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

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

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

    🐛 Fix compile without Y/Z (#24858)

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

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

    🔧 Check Sensorless Homing on all axes (#24872)

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

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

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

    🎨 HAS_SPI_FLASH => SPI_FLASH

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

    🐛 Fix and improve Polargraph (#24847)

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

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

    🐛 Fix operators for V axis (#24866)

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

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

    🩹 Fix TFT LCD in Simulation (#24871)

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

    🎨 MMU2 cleanup

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

    🐛 Fix M876 without emergency parser

    Fix regression from 1fb2fffdbf

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

    ✨ DOGM Display Sleep (#24829)

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

    🩹 Fix temperature include (#24834)

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

    🎨 Misc. variant cleanup

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

    🧑‍💻 Min and max for base types

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

    ✨ MKS SKIPR board (#24791)

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

    🔨 Update mfinfo for 2.1.x

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

    🧑‍💻 Min and max for base types

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

    ✨ ADVANCE_K per-extruder (#24821)

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

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

    ♻️ Set Progress without LCD (#24767)

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

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

    🩹 Fix Color UI touchscreen sleep (#24826)

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

    🩹 Fix Switching Toolhead compile (#24814)

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

    🧑‍💻 Einsy Rambo EXP headers (#24825)

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

    🔨 Detect feature parsing error (#24824)

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

    ✨ Creality v5.2.1 board (#24815)

    Followup to #24760

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

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

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

    🐛 Fix DUE compile and errors (#24809)

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

    🩹 Fix some vector_3 cast operators

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

    🔧 Update Creality 4.2.2 Driver Warning (#24806)

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

    🩹 Disable DEBUG_DGUSLCD (#24798)

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

    🎨 Remove non-const compare operators (#24810)

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

    ✨ Creality v5.2.1 board (#24760)

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

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

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

    ✏️ Followup for M524 (#24775)

    Followup to #24761

commit f1a05d19b0886921cbe3529a22bcf796c174bc4a
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date:   Mon Sep 26 22:18:15 2022 +0100

    🚸 UUID fallback to STM32 device SN (#24759)

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

commit a7a493d795fcb9d77cbbe284aea1f5aa3978845a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Sep 26 14:15:14 2022 -0700

    📌 Specify MarlinFirmware/U8glib (#24792)

commit d9967f5395e3f223bd2cf99249f2f6058d907620
Author: Renaud11232 <gaspardrenaud@hotmail.com>
Date:   Fri Sep 23 07:20:44 2022 +0200

    🔨 Fix LPC1768 autodetect path on Linux (#24773)

commit 5ee74668cf48a72736ffa8a1dfd6ca1fa6644eeb
Author: Stefan Kalscheuer <stefan@stklcode.de>
Date:   Fri Sep 16 21:21:13 2022 +0200

    ✨ Anycubic i3 Mega LCD file menu fix (#24752)

commit be149336f0192777e835396a856bd836c10aea35
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ M217 G wipe retract length

commit 1f72c8341f33a6ea7e086ad4f94b0bc903ad2ba3
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ XY_COUNTERPART_BACKOFF_MM

commit 3d03f96205cac22d9061293b8703e5a3271ed420
Author: studiodyne <diabolomix@hotmail.fr>
Date:   Sun Aug 28 00:43:32 2022 +0200

    ✨ RGB_STARTUP_TEST

commit c996bfddb7775f9160e33443df8c103de003339f
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Sep 2 03:04:46 2022 +0100

    ✨ Permit Linear Advance with I2S Streaming (#24684)

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

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to #24619

commit 29156ffe5d16afeb78fac434197155e8a04f0629
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Nov 9 20:54:17 2022 -0600

    🐛 Fix recalculate_max_e_jerk

commit eff60964da6e1b5d74f342de84f47344f96f201d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Sep 23 17:16:01 2022 +1200

    🐛 Fix VW axis fields in types.h (#24780)

commit 5fe1f6647875b2f325db52b74f356bdaec19dce5
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Thu Sep 1 21:16:52 2022 +0200

    🚸 Strict index 2 for M913 / M914 XY (#24680)

commit 2fc97aa240f17c9c2429e65c0110ceddb7af4132
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Sun Sep 18 03:51:37 2022 +0200

    🚸 Emergency Parse M524 (#24761)

commit aa283582677fbbcb7ffe5f3183ac0bf5028747c3
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Sep 4 02:51:53 2022 +0200

    🐛 Fix / refactor shared PID (#24673)

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

commit e04e18a5902958c9a200ff67b3fba6c730524bf3
Author: Chris Bagwell <chris@cnpbagwell.com>
Date:   Fri Sep 16 13:30:04 2022 -0500

    🧑‍💻 STM32G0B1RE Pins Debugging (#24748)

commit bdb7f3af3f4008c2a6d209d4cb3d679863718ad7
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Tue Sep 13 20:31:59 2022 +0300

    🩹 Fix MKS TinyBee + MKS MINI 12864 SD blank on write (#24670)

commit 2f24c3145458b60e091714e18629253eac3d7d1f
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Tue Sep 13 20:29:59 2022 +0300

    🚸 Sanity check Integrated Babystepping + I2S stream + ESP32 (#24691)

commit 96d050c7ba4c1f3dccf1278eb2eb6c6b4dab4a99
Author: George Fu <nailao_5918@163.com>
Date:   Wed Sep 14 01:28:38 2022 +0800

    ✨ FYSETC SPIDER KING407 (#24696)

commit aabd3e9e196ccbe04f94a26cd25e4d3508c262f9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Sep 14 05:27:16 2022 +1200

    ✨ BTT SKR Mini E3 V3.0.1 (#24722)

commit 38b31059003110ae0cb2dcc3270620e69954a3d7
Author: XDA-Bam <1209896+XDA-Bam@users.noreply.github.com>
Date:   Fri Sep 9 22:51:11 2022 +0200

    ⚡️ Minor planner optimization (#24737)

commit 02810616cc08ea14c6257578061d61c492fb8673
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Tue Sep 6 08:48:42 2022 +0200

    🚸 On pause report "SD printing byte X/Y" (#24709)

commit 7daff755f2899d4cbe24aa038b1e32d9369692c9
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Thu Sep 1 20:48:24 2022 +0200

    🩹 Report M22 / M23 success / fail (#24706)

commit 53564fb6f3d1c1cf4421329a2f729dab22f3f8e1
Author: Gurmeet Athwal <gurmeet.athwal@gmail.com>
Date:   Sat Sep 10 00:51:19 2022 +0530

    🚸 M115 spindle/laser (#24681, #24747)

commit 9d9f303c5eb4be828a9ddc0a26fc7a5a726521da
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Sep 23 05:20:17 2022 +1200

    📺 FYSETC Mini 12864 2.1 pins for Creality V4 (#24624)

commit b9428bf0876944e163bc83a00f6dabbb48e8b472
Author: FBN <62633887+fBn0523@users.noreply.github.com>
Date:   Fri Sep 16 07:02:08 2022 +0800

    🚸 More automatic MMU2 load (#24750, #24770)

commit 0642cd8a8352cd8a34d9d9354162a4478515554c
Author: Yuri D'Elia <wavexx@users.noreply.github.com>
Date:   Thu Sep 22 18:54:26 2022 +0200

    👷 Array macros to …26 elements (#24789)

commit d2b1467ab36974b65a3cb50ea7b6ca626c60a327
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Sep 9 19:31:47 2022 -0500

    🌐 Some short menu strings

commit 03aba439f67410e73101f83010c07387ab0ef828
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Sep 9 12:22:52 2022 -0700

    ⚡️ Only Sync Emulated EEPROM Print Counter (#24731)

commit 85a47d61e62713c00f2512415701631e3c53b78f
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Fri Sep 9 20:54:29 2022 +0200

    🐛 Fix heater timeout PID output (#24682)

commit 78577b13cbe5d5aaca5a3eb58b7aeb472077f00d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 6 23:03:15 2022 -0500

    🧑‍💻 Microsteps to stepper.cpp

commit b29cd4c510632fd43fb0ff59cf69e9979ef94d25
Author: hartmannathan <59230071+hartmannathan@users.noreply.github.com>
Date:   Fri Sep 9 16:35:16 2022 -0400

    📝 Fix example comment (#24744)

commit 0eb6a8d12e1f73eab7cef4090137f6e0cf7c7031
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 6 22:06:13 2022 -0500

    📝 Fix comment

commit 8a8218a8f22f3942bbec3f22f43529b3c489603a
Author: JoaquinBerrios <JoaquinBerrios@users.noreply.github.com>
Date:   Tue Sep 6 01:39:02 2022 -0500

    ⚡️ BTT SKR V3.0 / EZ = 480MHz (#24721)

commit 3a18ba04125dad983d232ef02d045c28a27c5c36
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Sep 13 13:29:50 2022 -0500

    🔨 Fix config-labels.py

commit 2828f1d1dbddf908968951af3b09586369dc4135
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 27 20:12:52 2022 -0500

    🔨 Outdent py string

commit 63507acf98e94ceffa4e82d588d6ec369f2b7646
Author: dmitrygribenchuk <dmitrygribenchuk@gmail.com>
Date:   Mon Sep 5 21:19:19 2022 +0300

    🔨 Clean up Python imports (#24736)

commit cc2cc7d08170e4778f1aa76eb38172e1b7dc8978
Author: ButchMonkey <ButchMonkey@users.noreply.github.com>
Date:   Mon Sep 5 05:48:58 2022 +0100

    🔨 Fix config.ini custom items, and 'all' (#24720)

commit b676b43874c9f851902a0f80a2013bf19d9b0820
Author: ButchMonkey <ButchMonkey@users.noreply.github.com>
Date:   Sun Sep 4 21:10:22 2022 +0100

    🔨 Fix configuration.py with encoding UTF-8 (#24719)

    - Opening files with Windows-1252 encoding.

commit 2f1b89bd1f4ae88e9b1b9e62ea567ac3a4d1178a
Author: Stephen Hawes <sphawes@gmail.com>
Date:   Sat Sep 3 21:55:37 2022 -0400

    ✨ Opulo LumenPnP REV04 (#24718)

commit 1a2e591d03ff3648a5913e1a0a6a672cfd4bba81
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Sep 3 16:48:21 2022 -0700

    🔨 Update SKR 3 env (#24711)

commit dc65e299fa2860c254b113a160f7c41c1220558d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Sep 3 18:21:23 2022 -0500

    📝 Format some comments

commit 033bca17737964ebb95c76a69e7e2005738f9c35
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Fri Sep 2 05:47:37 2022 +0300

    🔨 Native USB modified env followup (#24669)

    Followup to #24619

commit e350acb360a7d6645bf2b3938ac82720c1475de2
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Thu Sep 22 12:54:49 2022 -0500

    🐛 Fix UBL regression (#24622)

    Fix regression from #24188

commit 7d8d2e2c587e951c944eb7e399767dbc8432e62d
Author: Ruedi Steinmann <ruediste@gmail.com>
Date:   Fri Sep 9 22:33:54 2022 +0200

    🩹 Fix a BUZZ (#24740)

commit 3c6b3e5af41202be8781645bb07cc8cee9206b49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 29 19:23:53 2022 -0500

    🔖  Config version 02010200

commit d5e9b25a3121724556ce231967c3e1069afa126b
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Tue Aug 30 02:52:02 2022 +0300

    🐛 Fix back button (#24694)

commit 9313c2fd18ef6255437e7ae3b0d68d0349242d00
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 25 23:45:07 2022 -0500

    ✏️ Fix http:// links

commit d8a280bf53a163d08a99e2c518ecd68f6b0be601
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Fri Aug 26 07:40:31 2022 +0300

    ✏️ Fix LCD sleep conditional (#24685)

commit d244389998863aa2d37b0c903aebfcda80930a01
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Aug 25 23:23:54 2022 -0500

    🩹 Constrain UBL within mesh bounds (#24631)

    Fixes #24630

commit d140be0281b9903e4759e3bfadecaa0979cdbc09
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Aug 25 16:14:50 2022 -0700

    🚸 Up to 10 Preheat Constants (#24636)

commit 27bea5602588c51862b788344c264f10a2486345
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Aug 26 11:07:41 2022 +1200

    🔧 Fix Auto-Fan / Controller-Fan pin conflict check (#24648)

commit 98ee3fc2b5b3bfef9a29aaccddcefb7dae60daa1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Aug 26 10:51:11 2022 +1200

    🩹 Fix PID debug output (#24647)

commit e8394c391ef7bcdf62d268d7ab453e8ad7a1e743
Author: Mark <niujl123@sina.com>
Date:   Fri Aug 26 06:50:03 2022 +0800

    🐛 Fix Bed Distance Sensor reading (#24649)

commit e24d5f931518fd6644d5d50dcce908e903550963
Author: Arkadiusz Miśkiewicz <arekm@maven.pl>
Date:   Fri Aug 26 00:14:54 2022 +0200

    ✨ M20_TIMESTAMP_SUPPORT (#24679)

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

commit ef1cf0d5a188fcff37c056ce8d64348c2e4e225e
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Aug 25 20:16:55 2022 +0300

    ♻️ Display sleep minutes, encoder disable option (#24618)

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

commit f088722ae80d5ba9e032b029e1f69a12e3d4e900
Author: DejitaruJin <dejitarujin@gmail.com>
Date:   Thu Aug 25 13:10:43 2022 -0400

    🩹 Fix SainSmart LCD (#24672)

commit 68c5e97fd7574841ac32cd929b6b1e8b44d1cb61
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Aug 25 10:08:03 2022 -0700

    🩹 Fix Freeze Feature (#24664)

commit a8cf886aa5d4c6a65a41b93b49ed5504b8fc4691
Author: Lefteris Garyfalakis <46350667+lefterisgar@users.noreply.github.com>
Date:   Thu Aug 25 19:48:35 2022 +0300

    🔨 Suppressible Creality 4.2.2 warning (#24683)

commit a31e65e30b0d71da113db8540a8c49aa3f07034c
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Mon Aug 22 18:31:02 2022 +0300

    ✨ Robin Nano v1 CDC (USB mod) (#24619)

commit d94a41527f8c00241d31eb82c0d0b0ef380269c0
Author: Alexey Galakhov <agalakhov@gmail.com>
Date:   Mon Aug 22 17:11:53 2022 +0200

    🐛 Fix JyersUI (#24652)

commit 37a7da075f415b361daa25b95e37b1acf88ea0c0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Aug 22 07:53:51 2022 -0700

    🔧 Fix Skew Correction defaults (#24601)

commit 5145266b0db80f52b81d3060082498960664445a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 20 06:41:00 2022 -0500

    🎨 Some automated cleanup

commit bdd5f3678eff031d098f22a92b0d097bac3a41b3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Aug 19 11:37:43 2022 -0700

    📺 Add to MKS UI About Screen (#24610)

commit b4af335b7ab1bedd011335ea06bfb1d1c2928c03
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Aug 19 11:11:15 2022 -0700

    🔧 Remove STM32F4 Print Counter Sanity Check (#24605)

commit cfe1d52bf247f5152e51f87ff7d770c0aef63a56
Author: Protomosh <43253582+Protomosh@users.noreply.github.com>
Date:   Fri Aug 19 20:57:27 2022 +0300

    🐛 Fix DGUS Reloaded + STM32 (#24600)

commit ff09ea13a4ef86d810ebb69eb08933c448c9e32c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 19 11:00:52 2022 -0500

    🧑‍💻 Use spaces indent for Python

commit d93c41a257bbc1097d4fbaba4cfd5ddd54be71a8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 9 07:58:20 2022 -0500

    🔨 Misc. schema updates

commit 98e6aacbefb87489c3e79fa5735834a018ce0d9e
Author: Graham Reed <greed@7deadly.org>
Date:   Fri Aug 19 16:48:27 2022 +0100

    🔨 Fix LPC1768 automatic upload port (#24599)

commit 0adee8fae008660895c9f993021ca3c68a173312
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 18 13:03:17 2022 -0500

    🩹 Fix strtof interpreting a hex value

    Bug introduced in #21532

commit c154302ece49db7e93aef6984d7159d89f36cee2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 17 07:32:08 2022 -0500

    🔨 Add args to schema.py

commit b5ccddbe353827cea3619e9efb38e68582e37161
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Aug 16 09:41:45 2022 -0500

    🎨 Fix '…if_chain' Uncrustify option

commit d69893309e56423d0b951cb5064b3719800f0a2d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 8 06:42:46 2022 -0500

    🔨 Misc. config py updates

commit fc3ea96ff982bc4dff554142a88b9b00f2286335
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 11 12:41:41 2022 -0500

    🧑‍💻 Add operator== for C++20

commit 3892d08b06ce3c24be5d0d9c150e0ab035ba9ff0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Aug 11 11:35:36 2022 -0700

    🧑‍💻 Fix UBL Build Mesh preheat items (#24598)

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

commit 857dc73be5bdae32e304656245e0db3dd5d49650
Author: Ivan Kravets <me@ikravets.com>
Date:   Sat Aug 6 09:17:46 2022 +0300

    🔨 Fix a PlatformIO debug issue (#24569)

commit 419a145fa30dc01315d5b6b69f76253b21bd7a9b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Aug 7 20:42:12 2022 -0500

    🔨 Update schema export

commit 398cae762506a43eb27a815f10bee6e2821c6c5f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 6 18:39:05 2022 -0500

    🔖 Version 2.1.1

commit 8192cc12d33fb860fff55ea68f5df9c9058b0293
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 6 18:38:12 2022 -0500

    🎨 Misc. config cleanup

commit 7f2a8362517181cde5b98bf88aa48821355f7692
Author: ExtNeon <33217029+ExtNeon@users.noreply.github.com>
Date:   Sat Aug 6 23:37:03 2022 +0000

    ✨ SD Endstop Abort G-Code (#24461)

commit b02c3258b56f73ae6cff17d7e47c9e1fba7c91cd
Author: Mark <niujl123@sina.com>
Date:   Sat Aug 6 14:14:58 2022 +0800

    ✨ Bed Distance Sensor (#24554)

commit a0462eb01738516561ea9356ebcafcb523782457
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Aug 5 22:59:56 2022 -0700

    🩹 Fix AUTO_FAN_PIN sanity check (#24593)

commit a1704c10b977d31d2bb90cafe4935f3bdbfc3c89
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Aug 6 00:57:37 2022 -0500

    🩹 G0/G1 S seen => seenval

commit 7196f1312508bdb04d8e943572773a5f23c8509e
Author: qwertymodo <qwertymodo@gmail.com>
Date:   Fri Aug 5 22:07:30 2022 -0700

    ✨ M150 K – Keep unspecified components (#24315)

commit e06340abd13822fe54a1c0be5be57421b03490ef
Author: J.C. Nelson <32139633+xC0000005@users.noreply.github.com>
Date:   Fri Aug 5 22:09:46 2022 -0700

    🔨 Trigorilla Pro disk based update (#24591)

commit 98095ddad6818c1fd9dfca214d09f5107633106b
Author: Travis Ziegler <travisjayday@gmail.com>
Date:   Fri Aug 5 22:37:24 2022 -0400

    🩹 Fix LPC176x USB Host Shield (#24588)

commit 2f4b12170924d0090bcfd5a39e153c27cf44d8d9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Aug 5 19:39:41 2022 -0500

    👔 Keep "Needs: More Data" open

commit a0409289c8815e71b34eae1a09687229ed4e93b6
Author: Ruedi Steinmann <ruediste@gmail.com>
Date:   Fri Aug 5 01:00:19 2022 +0200

    🚸 Laser with only PWM pin (#24345)

commit 2ccdc4f9ed232af3b55fe633fafe64a9be508ff8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 4 17:56:09 2022 -0500

    🧑‍💻 MARLIN_TEST_BUILD – for future use (#24077)

commit bbf20332112948aad99bb8c7fba27fd661dc3a3a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 4 02:38:15 2022 -0500

    🔧 Config INI, dump options (#24528)

commit 9a42d1e577a364d6f4491657d1eabb92f14ed55a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Aug 4 01:17:10 2022 -0500

    🩹 Fix Malyan M300 with S-Curve compile

    Fixes #24548

commit 17794e18ae66793e0a4d6135de674d92e3d4b3d0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Aug 1 18:17:57 2022 +1200

    🔧 Update 644p/1284p Serial 1 sanity check (#24575)

commit 3b30951e83f0ec189c38ec993e5002f16556e087
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 1 01:14:58 2022 -0500

    🔨 Simplify scripts with pathlib (#24574)

commit c3f258644541cc81150e5e306aa3db60a31fc5bf
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Mon Aug 1 01:03:45 2022 -0500

    🐛 Fix laser menu enable_state (#24557)

commit c0cb7e35afe4a2e94133506d0e7c1d95ddbf80ba
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Jul 30 22:55:32 2022 -0400

    ✨ Configurable Switching Nozzle dwell (#24304)

commit fd319928d2889efe57c76913b3d5d28ff49a70d1
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Jul 31 03:39:48 2022 +0100

    Fix, improve Linear Advance (#24533)

commit 5dad7e0d035ec82d2eeb38c79101cba93f35c958
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Jul 31 03:05:16 2022 +0100

    🩹 Use _MIN/_MAX macros for native compatibility (#24570)

commit 9ee558afe1afc20e5e932fc0dcbecd7744065ec7
Author: DerAndere <26200979+DerAndere1@users.noreply.github.com>
Date:   Sun Jul 31 03:49:15 2022 +0200

    🐛 Fix kinematic feedrate (#24568)

commit bbaccd342eaf5e4cdca6b988c367fa79faacab82
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Jul 30 17:51:25 2022 -0700

    ✨ Encoder Noise Filter (#24538)

commit 6134d55360b8155435bb2ed10f51704268f5450f
Author: lukasradek <lukasradek@users.noreply.github.com>
Date:   Sat Jul 30 01:53:39 2022 +0200

    📝 README Updates (#24564)

commit 868e76b96543ca5282558396c679d7e81d29df49
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 29 08:01:39 2022 -0500

    🎨 Renum boards.h

commit 5f105e254dfa6c4280f2a3c276bdb8587cc4c152
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 29 02:14:14 2022 -0500

    🐛 Fix M125 for 9 Axis

commit 9534c6e9033256f5d6de2b920124acf1fa829548
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 28 20:52:33 2022 -0500

    🎨 Misc. 'else' cleanup

commit ec9a2ee55711555bb1489e492120398a34ed52c5
Author: Ludy <Ludy87@users.noreply.github.com>
Date:   Thu Jul 28 04:44:21 2022 +0200

    🌐 Update German language (#24555)

commit d8db00e31febec6fa1a71e5ead6f0bff849fe15a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 27 04:24:50 2022 -0500

    🧑‍💻  Update planner/stepper includes

commit e7c262dc30cd921d6dc1da7ec494adacb43ed5f8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 26 21:15:44 2022 -0500

    🩹 Fix lcd_preheat compile

commit cee9da6132f9a02eea55522ad0342359f6cec26f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 26 14:54:54 2022 -0500

    🔨 Update build/CI scripts

commit a24b9e16ff372a7b777fd72aad8c3d567ca07018
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 24 13:51:43 2022 -0500

    🎨 PIO scripts cleanup

commit 1e9232723d71ea6383969151809af3df9aea3571
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 25 12:02:37 2022 -0700

    📺 Fix TFT Classic UI non-Touchscreen 1024x600 (#24541)

commit 66369f8236c843bc933d42fc84d057bbbfe876e9
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 25 11:48:59 2022 -0700

    🩹 Fix JyersUI include (#24540)

commit 0ca76bf9ed4a5386b49943bd9c9bbf9951db4ff8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 25 11:47:07 2022 -0700

    📝 Update MPCTEMP G-Code M306 T (#24535)

    M306 simply reports current values. M306 T starts autotune process.

commit 0f3c3c419e565bd16a86fbbd0a240ec55e0ae769
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 21:59:00 2022 -0500

    ✨ Reinstate JyersUI

commit 89e9ae06625d6244f172f6aac628d1001abf92e7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 17 22:19:24 2022 -0500

    🧑‍💻 Give the simulator Stepper access

commit 5b8f7686cb1d514bcddb34aaddee24f6140a97e3
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 19:30:29 2022 -0500

    🧑‍💻 Fix and improve build_all_examples

commit 6e02f15dd6afffb761da2516a3764a64567a8583
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 21 04:18:17 2022 -0500

    🔨 Minor build script changes

commit c9445cfc4120ab9bcf47bdd2deffb59bcd901cad
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 21:46:38 2022 -0500

    🩹 Fix TFT image PACKED conflict

commit beacb73d93259486f66a6baf8f5809b3d0807531
Author: Frederik Kemner <stuff+github@fredo.org>
Date:   Wed Jul 20 23:25:15 2022 +0200

    🩹 Fix gcode.h include (#24527)

commit 53a57ff7bf807684af09b69cd1a3e5713394e544
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Jul 20 04:08:19 2022 -0400

    🐛 Fix Archim2 USB Hang (#24314)

commit d726f641a571b13b7d55307bf50a253a49883d25
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 20 16:26:33 2022 -0500

    EXP header pin numbers redux (#24525)

    Followup to 504fec98

commit feafa321d7caa90f886ef7d66f6b0513d5c595e3
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Tue Jul 19 18:33:49 2022 -0400

    🚸 Use Tool 0 for G30 (#24511)

commit f5b972bb103bcac57d3c8bd26f80d93e3f86a5f8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Jul 20 10:32:08 2022 +1200

    📺 SKR_MINI_SCREEN_ADAPTER for BTT SKR Mini E3 V3 (#24521)

commit 196795c0cc1ea31380d4c06374cf032a25e47c1d
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Wed Jul 20 01:30:19 2022 +0300

    ✅ More ESP32 (MKS TinyBee) tests (#24493)

commit c3085d666ffba28c67890bfc4424c30855188048
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 18 18:14:58 2022 -0700

    📝 Update Contributing Guide (#24320)

commit 807f2ef9697c241fdb8c354d90ca97050ccbca68
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Jul 18 21:12:27 2022 -0400

    🚸 Machine-relative Z_STEPPER_ALIGN_XY (#24261)

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

commit f752fe75ee6e4304741c743fbb2b52b7d5760ae4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 18 19:53:36 2022 -0500

    ♻️ Small sound / buzz refactor (#24520)

commit 97a73147fa47119d5600c28dd7bfc549a390e53f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jul 18 19:52:47 2022 -0500

    🩹 Fix manual move titles (#24518)

commit 915203f545f6d3114a5965a19125545f5592c42e
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Jul 18 06:51:44 2022 +0100

    🩹 Arc/Planner optimization followup (#24509)

commit 173eb3ff715535e1144de9961700363dc5780884
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 16:26:36 2022 -0500

    🚸 Renumber EXP pins to match schematics/RRF/Klipper

commit 96d3c66b646c89115be4a6c27d8908bedd8dbfb7
Author: Nikolay-Po <54221205+Nikolay-Po@users.noreply.github.com>
Date:   Sat Jul 16 03:56:15 2022 +0300

    ✨ Steinhart-Hart C Coeff for Custom Thermistor (#24428)

commit cc4fc28fe09eefe9a04c5521c47fa8ed796d8594
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sat Jul 16 00:15:51 2022 +0100

    ⚡️ Optimize Planner calculations (#24484)

commit 0a164a88fee6537d98ddaf6e1ef49dbfea813aaa
Author: Arthur Masson <arthur.sw@gmail.com>
Date:   Sat Jul 16 23:58:18 2022 +0200

    ✨ Polargraph M665 settings (#24401)

commit c72fe1a2f96805e56798c926856602797fe6033c
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Sat Jul 16 03:14:15 2022 +0200

    🩹 Add'l ProUI fixes (#24500, #24508)

commit 2add8ca4eb962debc9f5a9c4a2670205cf58f10a
Author: Christophe Huriaux <c.huriaux@gmail.com>
Date:   Sat Jul 16 23:35:40 2022 +0200

    ✨ eMotion-Tech eMotronic (Micro-Delta rework) (#24488)

commit 779c24122dc8ab079241b87c76861bd3e08d5906
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 17:16:37 2022 -0500

    🔨 Update mfprep comment

commit 6ac3f2738ea07c02f5c0629958828b1b4c807482
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 16:11:33 2022 -0500

    🔨 Add mftest --default flag

commit 77c6d9af201fcc6298184c763186ac3b8c4c6ecb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 16 16:01:24 2022 -0500

    🩹 Fix TFT tImage struct packing

commit 929e12bf498ca6e6b0da60a1c4cd62e7dfebff57
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Sat Jul 16 03:11:47 2022 +0200

    🔨 Remove log2file monitor filter (#24502)

commit fd18ac56672a88df54c2597d265e4e0857c66b24
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jul 15 15:43:43 2022 -0700

    📝 Update board MCU comments (#24486)

commit 06c1409843687da76f845e9a35cd3dac16c33be1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 12:38:00 2022 -0500

    🩹 Fix MAX31865 approximations

    Followup to #24407

commit ec95e66ff04e8f9c1fa48fc266b53e769a1109c8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 22 12:48:05 2022 -0500

    🔧 Base NUM_AXES on defined DRIVER_TYPEs (#24106)

commit 53ee7fce5bb0cb1630ed26d63bd5ce9efee53603
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jul 9 11:08:53 2022 -0500

    🐛 Fix SDIO for STM32 (#24470)

    Followup to #24271

commit 10f5f878ce3c29b77e45b7e0f1850fcb855bc848
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 29 18:41:03 2022 -0500

    🚑️ Fix XYZEval = N not setting E

commit 733ca940c0ed582fcd0e0a39b10b1fe8986b574c
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sat Jul 23 05:32:28 2022 +0100

    🐛 Fix 2d mesh print (#24536)

commit c880c7ed45540a375a8fb82d7c343d21a1c9060b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 14 02:56:55 2022 -0500

    🔨 Fix and update Makefile

    Followup to 89fe5f6d

commit e5e4cf920d406c45a66d00cd379fee08f4da0985
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jul 13 23:31:47 2022 -0700

    📌 Pin ESP32SSDP to 1.1.1 (#24489)

commit 3315f6faa4fed3fde158013c8575d6bc6b813f3d
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Thu Jul 14 03:30:00 2022 -0300

    ✨ Creality3D v4.2.5 / CR200B (#24491)

commit 4a6ad1c98bde764255511c5bce58740b6e5cfb13
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Thu Jul 14 07:03:27 2022 +0200

    🩹 Fix ProUI LED compile (#24473)

commit 3c9789fda810cb6cebfb835379780b27e1dbe6f5
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Thu Jul 14 00:00:33 2022 -0500

    🚸 Fix and update ProUI (#24477)

commit 3a19d34c7515598180abbc3e24d8991f8e8a098a
Author: toomuchwonder <43323256+toomuchwonder@users.noreply.github.com>
Date:   Thu Jul 14 04:17:53 2022 +0100

    🩹 Fix MKS UI extruder speed (#24476)

commit 6b19a58f035862292a3ec52b4efc388b746d69ad
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Wed Jul 13 22:16:22 2022 -0500

    🔥 Drop STM L64** drivers, STEVAL_3DP001V1 (#24427)

commit 9283859b1ef82d7aa82bcb64a70d1b25b8e6d22c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 13 21:22:53 2022 -0500

    🎨 ANY => EITHER

commit e840015cad0bbbf882e0b90cb8d722725c6e1dd2
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date:   Thu Jul 14 03:25:35 2022 +0200

    🔨 Abort firmware update on transfer error (#24472, #24499)

commit efe04e10168a21f361a325a8c93840c2562042e0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 12 13:25:36 2022 -0500

    🧑‍💻 Update Mac Sim directions

commit f543b3cb84e26c7594b9be2da1bcfc3c7c2b5a60
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jul 12 13:02:54 2022 -0500

    📌 Ask for PlatformIO 6.1.1 or newer (#24435)

commit 6a86c5bad32da03b71c5f0223904b44e129185f0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Jul 11 11:33:42 2022 -0700

    ✨ MKS Monster8 V2 (#24483)

commit 7207a324341c3aaa8de8f103391576b274830c2d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 10 22:00:10 2022 -0500

    🧑‍💻 Add Sim debug with lldb

commit 678474d55cd92d14bde24d00dbc9322919cfc1e1
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Jul 8 13:30:03 2022 -0700

    🔧 Assert Probe Temp Comp requirements (#24468)

commit 24c211307d5a1d009d12c4d25d3828c05534f3e7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Fri Jul 8 15:02:12 2022 -0500

    🐛 Fix laser/fan sync (#24460)

    Followup to #22690, 307dfb15

commit 0c78a6f65791e1c2c3f4278ed2b48bcf20b9b063
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Jul 8 20:41:39 2022 +0100

    ⚡️ Optimize G2-G3 Arcs (#24366)

commit 79a332b57ea4a1ddb0e6b06d8dabae34268ed3bd
Author: Jason Smith <jason.inet@gmail.com>
Date:   Thu Jul 7 21:43:56 2022 -0700

    🩹 Fix LCD_BACKLIGHT_TIMEOUT compile (#24463)

commit d9ecbdcdbb8f5073987c848573d89cfb63719201
Author: Pauli Jokela <pauli.jokela@didstopia.com>
Date:   Thu Jul 7 18:59:23 2022 +0300

    🩹 Fix safe homing sanity-check (#24462)

commit 527fe2496af924c47411c7aa3c3622b22d04b42e
Author: Farva42 <100859196+Farva42@users.noreply.github.com>
Date:   Wed Jul 6 19:40:09 2022 -0600

    ✨ MAG_MOUNTED_PROBE (#24420)

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

commit 6c2ffe9d341f8f61bca8e19b07c3fc6a1d904375
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 6 19:34:45 2022 -0500

    🔥 Remove JyersUI (#24459)

commit 0fdedfa2fb46d665fbd5686bc58e7126ee82bd97
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jul 6 19:29:07 2022 -0500

    📝 Configurations 02010100 (#24458)

commit e93a1dd2fae37457894bf04b30e1c8ad5801b35c
Author: Meilleur Gars <98503100+LCh-77@users.noreply.github.com>
Date:   Wed Jul 6 13:46:11 2022 -0700

    🚸 JyersUI updates (#24451)

commit 03760fd79ea7f020f8739647f7a420bf4ec286b7
Author: Christophe Huriaux <c.huriaux@gmail.com>
Date:   Wed Jul 6 22:43:38 2022 +0200

    🩹 Fix ST7565 LCD contrast init (#24457)

commit d3aed23e18bd9b165282ad83ef86422510af55c0
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Wed Jul 6 08:35:08 2022 -0500

    🐛 Fix Sensorless Probing compile (#24455)

commit 893707711e2a507aa48e41c3c59a267f9aea238f
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Wed Jul 6 16:30:47 2022 +0300

    🐛 Fix MKS TinyBee compile (#24454)

commit d965303a7a1592e348853c1620cf54576652ace8
Author: Mike La Spina <mike.laspina@shaw.ca>
Date:   Wed Jul 6 07:46:39 2022 -0500

    ⚡️ Fix and improve Inline Laser Power (#22690)

commit 5b6c46db2910b3ec651793d8cb0c1d1b08a39384
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jul 3 22:31:06 2022 -0700

    ✨ BigTreeTech SKR SE BX V3.0 (#24449)

    SKR SE BX V3.0 removes the Reverse Driver Protection feature.

commit 8f40a2f257511370f587f15613b2308cabdb2ee0
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Mon Jul 4 04:49:23 2022 +0300

    🔨 Fix OpenBLT encode; no-bootloader envs (#24446)

commit e4f85e8fbc57e4688b966fa29823c51ba5bb2588
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jul 3 10:32:47 2022 -0500

    ♻️ Encapsulate PID in class (#24389)

commit 678955949f980f2bfa942a1a8dc4542a20423bd1
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Jul 2 21:31:27 2022 -0300

    🔨 Disable stack protector on macOS simulator (#24443)

commit 923d34550a828f483d73481242782715080ebc7e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 14 21:56:13 2022 -0500

    🔨 PlatformIO "--target upload" == "--target exec"

commit ed643e634fbd98d21e22fdcdf615532cc9cf0def
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jul 14 21:03:11 2022 -0500

    🔨 Fix Warnings/settings force-recompile

commit 3f4c8c31c6c9c3e1d6871ab6bca86818db5697f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 8 22:45:17 2022 -0500

    Fix SDIO for STM32

    Followup to #24271

commit 171ed66de0a69b9811a636219f51792c3d59bf63
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jul 3 09:08:43 2022 -0700

    🚸 MPCTEMP: Home before cooling (#24434)

commit 5f2e4487e75812d32ace4667bccb6efb6134bdb0
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Jul 3 08:08:40 2022 -0700

    🩹 Fix MKS TinyBee ADC Vref (#24432)

commit 80c7abd7271fcadacff8cf74c34184987f22f07d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 1 04:49:37 2022 -0500

    🩹 Remove poison wchar_t macro

commit 814b53750fbc03ffc2572252474aca2f4bf043eb
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jul 1 20:10:51 2022 -0500

    🩹 Remove obsolete split_move

commit 23e93c51fd3a080c59ba0f5321a73eab0058873e
Author: Moonglow <fxdteam@gmail.com>
Date:   Fri Jul 1 05:51:55 2022 +0300

    🐛 Fix M149 (#24430)

commit afbdcc8eee9f3f13b1e3fe196728554ac8efdad7
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Jul 1 03:07:36 2022 +0100

    🚸 Vertical Max7219::quantity in portrait orientation (#24415)

commit 4820947203808400240898a487e4fa023f4976e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Jun 30 20:57:34 2022 -0500

    ✅ Update path to Ender-3 S1 configs

commit d44aef8b6b54d29446b796f78a868e4bffdef7db
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 29 20:16:16 2022 -0500

    📝 Index Mobo Rev03 => Opulo Lumen Rev3

commit c1c0496073b8c70728f237fb2a99fdae19c7bb4f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jun 29 17:14:23 2022 -0500

    🩹 Fix memset block warning

commit a48831d600f9077c43c2c841fccdd76b154025e9
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Jun 29 06:24:22 2022 -0700

    🐛 Fix Axis Homing (#24425)

    Followup to 4520a51

commit c076094fa9eac463abe47fcf2921ed6d690ba3ee
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date:   Wed Jun 29 01:53:05 2022 +0300

    🐛 Fix MAX31865 PT1000 normalization (#24407)

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

commit 57c137a60f8af6f777a2fc04fd4412844dd85c59
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 26 22:30:05 2022 -0500

    ♻️  reset_acceleration_rates => refresh_…

commit 05bdc5640d20412d852730d77e0e42a8e0b6e2b4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 26 22:24:59 2022 -0500

    ♻️ Planner flags refactor

commit 83784bd8b7a53b21d828923e9f3dfd854b83610a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 26 22:32:00 2022 -0500

    📝  Note about UBL bad splits

commit 23f19e9ce8452cc21f4c5cf0a5a3a2784c7ac512
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 26 10:01:22 2022 -0500

    🎨  Misc. shorthand operators

commit 0435b2220a695f40aaba29a6965f7406d9a30db9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jun 26 05:47:18 2022 -0500

    🐛 Fix Manual Move axis selection (#24404)

commit ab2fceda2c3b50ee1de99e3471197cb151f6d61b
Author: Shlee <github@shl.ee>
Date:   Sun Jun 26 06:56:57 2022 +0000

    📝 Add STM32F4 example, Ruby (#24399)

commit 88dc360e9d72a0f3461b7e1f2ddd2904df3e7abd
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Jun 26 08:52:19 2022 +0200

    🌐 Update Italian language (#24398)

commit f5bdb8b4d23b1b6f50c91b74620c0b97c9531b10
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Sun Jun 26 08:51:16 2022 +0200

    🌐 Update Slovak language (#24397)

commit 3e01e0898953d4f00044904de324cb594c8c0541
Author: sgparry <sgparry@mainscreen.com>
Date:   Sun Jun 26 07:49:57 2022 +0100

    🩹 Fix LCD contrast with K8800 board

commit 4694a7fe7468b19600354d07115d5eaba6f6406a
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Jun 26 06:38:23 2022 +0100

    ✨ MAX7219 idle profiler (#24375)

commit 537af0bb035e…
oleksii-suprun added a commit to oleksii-suprun/marlin-fb-ghost5 that referenced this issue May 18, 2023
* 🚸 Add 50mm manual move (#24884)

* 🩹 Fix UBL menu compile (#25020)

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

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

See bigtreetech/BIGTREETECH-SKR-mini-E3#686 (comment)

* 🔧 Merge TMC26X with TMC config (#24373)

* 🩹 Fix ADVANCE_K + DISTINCT_E_FACTORS sanity check (#25007)

* 🐛 Fix MILLISECONDS_PREHEAT_TIME / mintemp (#24967)

* 🐛 Fix missing va_end in UnwPrintf (#25027)

* ⚡️ Input Shaping improvements (#24951)

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

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

* 🐛 Fix G-code resend race condition

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

* 📝 Formatted Team Overview (#25029)

* 🧑‍💻 Use spaces indent for Python

* 🎨 Misc. cleanup

* 🚸 G30 move to logical XY (#24953)

* 🩹 Fix MSG_MOVE_N_MM substitution (#25043)

* 🔨 Update renamed.ini (#25042)

* 🎨 Trailing whitespace

* 🩹 Ender 3v2 DWIN MarlinUI Fixup (#24984)

* 🐛 Fix TMC5160 + Input Shaping overcurrent (#25050)

* 🔨 Fix CI Test clean step

* 🎨 Misc. cleanup

* 🔨 Fix CI Test clean step (2)

* ✏️ Fix missing ) (#25055)

* 🐛 Fix Fast PWM on AVR (#25030)

Followup to #25005

* 📝 Update config comments

* 🔨 Return error on mftest exit

* ✨ M150 S default index (#23066)

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

* 🚸 Progress display followup (#24879)

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

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

* ✨ Two controller fans (#24995)

* ⚡️ Better IS buffer size calc (#25035)

* 🔨 No env:mega1280 for MIGHTYBOARD_REVE (#25080)

* 🔨 Updated 'mfconfig init'

* 🔧 Custom Menu Sanity Check (#25079)

* ✨ JyersUI TMC Settings (#25048)

* 🔧 Anycubic alternate Z1/Z2 wiring (#25071)

* 📝  Replace Twitter with Fosstodon

* ✨ TFT_COLOR_UI async DMA SPI (#24980)

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

* 🩹 Use custom I2C pins for OLED (#24970)

* 🩹 Fix M502 init of default motion

Fix regression from #25035

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

* 🩹 Fix M115_GEOMETRY_REPORT (#25092)

* ✨ Robin Nano v1 CDC (USB mod)

Followup to #24619

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

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

* ✨ BigTreeTech EBB42 v1.1 (#24964)

* ✨ BTT Octopus with STM32-F407 (#25031)

* 🎨 Suppress warning (#25101)

* 🐛 Fix DOGM time overflow, alignment (#25103)

* 🩹 Fix LCD_FOR_MELZI with Tronxy Melzi

* 🐛 Fix Melzi encoder

* 🧑‍💻 M593 F "min" freq

* 📝 Update 2.1.x README

* 🔖 Version 2.1.2

* 🧑‍💻 Fix ONBOARD_FLASH_SIZE

* 📝 Fix Configs URL (#25167)

* 🐛 Fix Mesh Bed Leveling Z correction (#25122)

* 🐛 Avoid lambda for menu items (#25169)

* 🚸 Hide IS menu while busy

* 🩹 Remove extraneous EZBoard V2 autofans (#25166)

* 🚸 Z Servo Probe is HAS_STOWABLE_PROBE (#25158)

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

* 🔨 FILAMENT_RUNOUT_SCRIPT sanity check (#25150)

* 🧑‍💻 Fix type warning (#25149)

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

* 🎨 Misc. IS cleanup

* 🩹 Remove extraneous EZBoard V1 autofans (#25182)

* 🎨 Rename *_temp_error to *temp_error

* 🧑‍💻 Add Temperature::is_above_target

* 🚸 Attach USB media (#25120)

* 🎨 Misc. cleanup (#25194)

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

* 🩹 Fix missing IS_MELZI (#25190)

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

* 🩹 Update MKS_GEN_13 MOSFET pins (#25126)

* 📝 More native.ini docs (#25201)

* 📝 Linux Sim apt-get line (#25208)

* 🩹 Fix E3V2 MarlinUI XYZ frame (#25206)

* 🐛 Fix Neopixel 1 startup (#25203)

* 🚸 ProUI updates (#25176)

* 🐛 Fix Chitu V6 Z_STOP_PIN (#25227)

* 🔨 Improve config.ini parser

* 🩹 Fix Sim with USE_WATCHDOG disabled

* 🔧 Input Shaping sanity checks

* 🐛 Fix homing_needed_error

* 🧑‍💻 Fix D5 warning

* 🎨 Misc. formatting

* 🔧 Added MOTHERBOARD error text

* ✏️  ProUI followup

* 🎨 Language / menu cleanup

* 🎨 Heading cleanup

* 🐛 Fix potential I2S buffer overwrite (#25113)

* 🐛 Fix, Refactor PID scaling (#25096)

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

* 🔧 Overridable Stepper EN init

* SDIO retry, hsd clock, etc.

* 🔧 Refine Input Shaping check (#25280)

* ✏️ Fix probe invert flag (#25282)

* 🐛 Fix MKS board Ultipanel support (#25278)

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

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

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

* 🔧 Fix SD sorting sanity checks (#25318)

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

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

* 📝 Fix Z*_ENDSTOP_ADJUSTMENT comments (#25295)

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

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

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

* 🔧 Add a test for extra axes

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

* 🩹 Misc. extra axis updates

* 🩹 Safe Bed Leveling updates

* 🩹 Various simple fixes

* 🩹 Extra axes for Tool Change

* 🩹 Extra axis min home with Delta Sensorless Probe

* 🔨 Adjust INI comments (#25183)

* 🔨 Suppress native build warnings

* 📝 Fix BTT_MINI_12864_V1 comment (#25366)

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

* 🎨 Tweak VALIDATE_MESH_TILT

* ✏️ Fix README typo (#25388)

* 🐛 Fix FastPWM calculations (#25343)

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

* 🚸 Interruptible PLR (#25395)

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

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

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

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

Followup to #25407

* 🔨 Encrypt some MKS Robin (#25349)

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

* 🔨 Fix marlin_custom.* without lib_deps

* 🔧 Fix Einsy Rambo TMC driver check

* ⚡️ Reduce edit_screen code size (#25420)

* 🎨 Use LIMIT macro

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

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

* 🐛 Fix ISR_SHAPING_LOOP_CYCLES (#25335)

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

Fix regression from #24951

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

* 🔨 Update font scripts

* 🧑‍💻 Script to make non-accented languages

* 🌐 Regenerate language data

* 🔨 Improve config.ini example fetch

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

Followup to #25442

* 🐛 Fix apply_power for SPINDLE_SERVO (#25465)

* 🐛 Fix Flash EEPROM for STM32G0B1CB (#25469)

* 🔨 VSCode + Devcontainer support (#22420)

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

* ⚡️ Exit from ISR on AVR already does sei

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

* 🐛 Fix Anet ET4 SD_SS_PIN (#25492)

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

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

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

* 🎨 Suppress M122 sign warning (#25613)

* 🩹 Fix SD partitionTable packing (#25648)

* 🩹 Fix MARLIN_F446Zx_TRONXY variant (#25659)

Followup to 9be1554f

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

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

* 🔨 Fix thread-unsafe deque iteration

* 🔨 Use 'build_src_filter'

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

* 🌐 Update Slovak language (#25305)

* 🌐 Update Italian language (#25309)

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

* 🚸 Improve CocoaPress Touch UI (#25446)

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

Fix regression from #24214

* 📝 Fix a comment

* 🌐 Update Italian language (#25454)

* 🌐 Update Turkish language (#25447)

* 🩹 Fan Menu / Status fixes

Followup to #21888

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

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

* 🧑‍💻 More IntelliSense-friendly declares

* 🎨 Suppress warning (#25529)

* ⚡️ Misc. optimizations

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

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

* 🩹 Fix Ender 2 stock LCD (#25538)

* 🩹 Fix a serial_ternary

* 🎨 calibration_stage => stage

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

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

* 🎨 Pins header comments

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

* 🎨 LPC_SOFTWARE_SPI => SOFTWARE_SPI

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

* 🩹 Update TRONXY_V10 SPI_FLASH pins

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

* 🎨 Timer tweaks

* 🩹 Fix Touch Calibration first point (#25298)

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

* 🐛 Fix M23 long filename support (#25540)

* 🔨 INI Updates

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

* 🔧 Fix up WiFi options (#25586)

* 🎨 Remove unused ProUI : UBLValidMesh (#25591)

* 🔨 Improve Docker local tests support (#25583)

* 🔨 MarlinSimUI updates (#25589)

* 🩹 Fix Ender-3 V2 with no fan

* 🩹 Fix displayed mix percentages

* 🌐 Update Italian language (#25587)

* 🐛 Ensure root for 'M503 C'

* 🧑‍💻 Update pinsformat.js

* 📝 Update Ender # labels

* 🚸 Support CoreXY without Z (#25630)

* 🎨 Apply const (#25643)

* 🎨 Detab some build files

* 🔧 Move TFT sanity checks

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

* 🚸 Minor M43 improvements

* 🧑‍💻 Clarify G28 R / R0

* 🔧 Move FIL_RUNOUT_PIN for Chiron + GLCD

* 🩹 Fix AUTOFAN_CASE

Followup to #25554

* 🔨 Improve runout script check

* 🔧 Trigorilla / Chiron updates

Followup to c3f34e4e

* 🧑‍💻 Apply simplified ?:

* 🧑‍💻 JyersUI code cleanup

* 🧑‍💻 Status Message cleanup

* 🧑‍💻 HostUI::continue_prompt method

* 🩹 Status / Host Prompt followup (#25720)

Followup to #25679

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

* 🐛 Fix Configuration Embedding (#25688)

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

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

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

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

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

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

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

* 🧑‍💻 Minor SpindleLaser::set_enabled tweak

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

* 🔧 Check renamed LIN_ADVANCE_K (#25710)

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

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

* 🚸 Permit G38 with Core (#25713)

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

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

* 🩹 Fix UBL safe measure move with extra axes

Followup to 7e79fc5b

* 🚸 Improve PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED (#25681)

* 📝 Developer note in boards.h

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

* 🔧 Extra axis endstop defaults

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

* 🔧 Update config.ini script

* 🔨 Servo Timer 1 with STM32F103RC_fysetc (#25741)

* 🧑‍💻 Use NUM_AXIS_ARRAY

* 🩹 Fix TFT sanity error

* 🔧 Move MMU section

* 🔧 Fix X2/Y2 axis pins check

* 🐛 Fix STM32 USB disconnect behavior (#25762)

* 🎨 Move G28O inside ProUI

* 🔨 MKS Robin2 PIO Env (#25792)

* 🚸 Faster default Marlin feedrate

* 🔧 Move SOFT_PWM_SCALE fallback to cpp (#25800)

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

* 🧑‍💻 M43 updates

* 🔧 Fix SHAPING_MIN_FREQ check (#25358)

* 📌 TH3D EZBoard SD_DETECT_PIN 27

* 🧑‍💻 ftdi_language

* 🩹 Improve edit menu rounding

* 🔖 Version 2.1.2.1

---------

Co-authored-by: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Co-authored-by: ellensp <530024+ellensp@users.noreply.github.com>
Co-authored-by: Vasily Evseenko <svpcom@gmail.com>
Co-authored-by: Radek <46979052+radek8@users.noreply.github.com>
Co-authored-by: Manuel McLure <manuel@mclure.org>
Co-authored-by: Marcio T <mlt4356-github@yahoo.com>
Co-authored-by: studiodyne <42887851+studiodyne@users.noreply.github.com>
Co-authored-by: Trivalik <3148279+trivalik@users.noreply.github.com>
Co-authored-by: tombrazier <68918209+tombrazier@users.noreply.github.com>
Co-authored-by: Chris Bagwell <chris@cnpbagwell.com>
Co-authored-by: Taylor Talkington <taylor.talkington@gmail.com>
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
Co-authored-by: トトも <85485984+ElectronicsArchiver@users.noreply.github.com>
Co-authored-by: kisslorand <50251547+kisslorand@users.noreply.github.com>
Co-authored-by: Sebastien BLAISOT <sebastien@blaisot.org>
Co-authored-by: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Co-authored-by: Vovodroid <vovodroid@users.noreply.github.com>
Co-authored-by: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Co-authored-by: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Co-authored-by: Simon Pilepich <simon.pilepich@kogan.com.au>
Co-authored-by: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Co-authored-by: Bart Meijer <brupje@gmail.com>
Co-authored-by: alextrical <35117191+alextrical@users.noreply.github.com>
Co-authored-by: Dipl.-Ing. Raoul Rubien, BSc <rubienr@sbox.tugraz.at>
Co-authored-by: ils15 <igorleite-ils@hotmail.com>
Co-authored-by: Stefan Kalscheuer <stefan@stklcode.de>
Co-authored-by: Vlad Popescu <popescuvlad94@gmail.com>
Co-authored-by: Timothy Hoogland <me@timothyhoogland.com>
Co-authored-by: Lukas Erlacher <l.erlacher@googlemail.com>
Co-authored-by: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Co-authored-by: Ashley 'DrToxic' Devine <41945324+DrToxic@users.noreply.github.com>
Co-authored-by: Mike Bignell <1911467+mikezs@users.noreply.github.com>
Co-authored-by: Richard Layton <rlayton@gmail.com>
Co-authored-by: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Co-authored-by: Alex Z <ad_user@runbox.com>
Co-authored-by: John Robertson <john@cirtech.co.uk>
Co-authored-by: MarkMan0 <38912829+MarkMan0@users.noreply.github.com>
Co-authored-by: Bob Kuhn <bob.kuhn@att.net>
Co-authored-by: xBiohazardx <36756950+xBiohazardx@users.noreply.github.com>
Co-authored-by: avionix-g <63542699+avionix-g@users.noreply.github.com>
Co-authored-by: Darren Garnier <dgarnier@reinrag.net>
Co-authored-by: Martin Turski <quiret@vfemail.net>
Co-authored-by: kg333 <matthew@kyengineer.com>
Co-authored-by: vyacheslav-shubin <shubin-vv@krista.ru>
Co-authored-by: Victor Oliveira <rhapsodyv@gmail.com>
Co-authored-by: Frederik Kemner <stuff+github@fredo.org>
Co-authored-by: Trevin Small <trevincub03@gmail.com>
Co-authored-by: Guðni Már Gilbert <gudni.m.g@gmail.com>
Co-authored-by: Hans-Christian Ebke <ebke@cs.rwth-aachen.de>
Co-authored-by: Sion Williams <sion5@hotmail.co.uk>
Co-authored-by: Eduard Sukharev <sukharev.eh@gmail.com>
Co-authored-by: Jason Smith <jason.inet@gmail.com>
Co-authored-by: Chris Pepper <p3p@p3psoft.co.uk>
Co-authored-by: Roman Moravčík <roman.moravcik@gmail.com>
Co-authored-by: jamespearson04 <jamespearson04@hotmail.co.uk>
Co-authored-by: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Co-authored-by: dwzg <50058606+dwzg@users.noreply.github.com>
Co-authored-by: Michael Hill <mhill@hillsoftware.com>
Co-authored-by: Davide Rombolà <davide.rombola@gmail.com>
Co-authored-by: George Fu <nailao_5918@163.com>
Co-authored-by: Martin Turski <turningtides@outlook.de>
Co-authored-by: Andrew <18502096+classicrocker883@users.noreply.github.com>
Co-authored-by: John Unland <junland.foss@gmail.com>
Co-authored-by: David Fries <David@Fries.net>
Co-authored-by: Dennis Lawler <4824647+drawlerr@users.noreply.github.com>
Co-authored-by: Alexey D. Filimonov <alexey@filimonic.net>
Co-authored-by: Jay Robson <45777442+jsrobson10@users.noreply.github.com>
Co-authored-by: Anson Liu <ansonl@users.noreply.github.com>
Co-authored-by: Scott Mikutsky <smikutsky@gmail.com>
akreager added a commit to akreager/Marlin that referenced this issue Oct 14, 2023
commit 60cd1ecb69d20b3ede99620b17918d81e812992b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 7 01:08:19 2023 -0500

    🩹 Fix G33 output

    See #26299

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

    🔖 Version 2.1.2.1

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

    🐛 Fix G2/G3 limiting_speed (#25988)

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

    🩹 Prevent Z drop with G28 X/Y

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

    🩹 Fix TFT LVGL compile error (#25865)

    Fixes regression from #24302

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

    🚸 Improve EEPROM validation (#25860)

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

    🩹 Fix null pwm_details

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

    🩹 Improve edit menu rounding

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

    🧑‍💻 ftdi_language

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

    📌 TH3D EZBoard SD_DETECT_PIN 27

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

    🔧 Fix SHAPING_MIN_FREQ check (#25358)

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

    🧑‍💻 M43 updates

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

    🔧 Move SOFT_PWM_SCALE fallback to cpp (#25800)

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

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

    🚸 Faster default Marlin feedrate

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

    🔨 MKS Robin2 PIO Env (#25792)

commit 0708275c6a6caeb21dc483ff2e8fca4c3584ce83
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu May 4 18:05:56 2023 -0500

    🎨 Move G28O inside ProUI

commit a2040bae21c968794c612e17473ff9cfeafb8319
Author: Scott Mikutsky <smikutsky@gmail.com>
Date:   Mon May 1 02:10:46 2023 -0400

    🐛 Fix STM32 USB disconnect behavior (#25762)

commit b6c27fbbdb7a6955c6752a34131bff865f2fb465
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 30 18:12:13 2023 -0500

    🔧 Fix X2/Y2 axis pins check

commit b2acd51bc2c05d00960e2dd97ba42a6ec99f8861
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 28 11:03:38 2023 -0500

    🔧 Move MMU section

commit 6d46a4924c877f6ca190e862462829770fd25862
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon May 1 18:15:31 2023 -0500

    🩹 Fix TFT sanity error

commit d959e3b0c48398c614f75a9ee6e5a9727851c99e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 30 18:12:21 2023 -0500

    🧑‍💻 Use NUM_AXIS_ARRAY

commit f48467b2e3be909113cfd0dea42202f2e01106ac
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 14:39:56 2023 -0500

    🔨 Servo Timer 1 with STM32F103RC_fysetc (#25741)

commit a9c476c55e47fade92ee2926e7d93bea9894e4d8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 18:43:44 2023 -0500

    🔧 Update config.ini script

commit 61d1ce7d2e079d0b0f90bc28d22ee6880ea4f659
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 14:29:21 2023 -0500

    🧑‍💻 Change HAL_PATH macro for easier HAL relocation (#25743)

commit 3c9e8e1e60665c8782cb5eaae45fe3927c6a6b01
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Apr 26 02:57:53 2023 -0500

    🔧 Extra axis endstop defaults

commit d5548556d38c4f0ada26194a8889e7b09138aaa4
Author: Anson Liu <ansonl@users.noreply.github.com>
Date:   Mon Apr 24 22:07:12 2023 -0400

    🔨 Prevent SlowSoftWire + Wire name conflict (#25707)

commit 44b06d756156b757fa6c7fb79b7eef4bfe297ab7
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Apr 24 05:24:10 2023 -0500

    📝 Developer note in boards.h

commit ffe47a0197c6ec8db932d25bf19e724f43235137
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 23 03:17:55 2023 -0500

    🚸 Improve PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED (#25681)

commit 6a12937dec532b51451f06859b05ddd139e2c26c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 23 02:07:42 2023 -0500

    🩹 Fix UBL safe measure move with extra axes

    Followup to 7e79fc5b

commit 00c96dc3cd267ca81db94f048f95dbc4b5fd79c3
Author: Alexey D. Filimonov <alexey@filimonic.net>
Date:   Sat Apr 22 12:06:19 2023 +0300

    🎨 Clean up TFT Color UI display items (#25712)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 7fb92f4e64ecab6e452b14bd5a304ff27b18047e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Apr 19 17:21:53 2023 -0700

    🚸 Permit G38 with Core (#25713)

commit a93b3c1222178e5f58cfa3f801459dcfca51a0a2
Author: Jay Robson <45777442+jsrobson10@users.noreply.github.com>
Date:   Thu Apr 20 06:58:42 2023 +1000

    🐛 Fix G38 with Z, support 9 axes (#25691)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit d75e016f3a8bc4965699f5656832a786efd33ccd
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Apr 19 14:53:11 2023 -0700

    🔧 Check renamed LIN_ADVANCE_K (#25710)

commit 5426759a37e90b969a5df599fc224274583c497c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Apr 19 12:50:11 2023 +1200

    🩹 Correctly add JSON to mc.zip (#25706)

commit a5b5db4819806f7143d82bff3f2677e502839e26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Apr 16 19:11:56 2023 -0500

    🧑‍💻 Minor SpindleLaser::set_enabled tweak

commit 15671a46d20087f662ad5d67bbc945d2e6cb9339
Author: Alexey D. Filimonov <alexey@filimonic.net>
Date:   Mon Apr 17 02:38:12 2023 +0300

    🩹 Fix Spindle/Laser ENA pin test (#25622)

commit f62d47a1657c82da7838556fc88853c137e23589
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Sun Apr 16 18:35:13 2023 -0500

    🩹 Fix laser with no PWM compile (#25290)

commit 5b8be446a03d3a8e6b964c7f3231c969bacf579d
Author: Dennis Lawler <4824647+drawlerr@users.noreply.github.com>
Date:   Sat Apr 15 22:50:26 2023 -0600

    🚸 Echo G30 out-of-bounds (#25671)

commit df7d13a4d0ebc1a9053d0e8df1ce1b1a17c46d59
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Apr 18 10:40:13 2023 +0200

    🩹 Bail on 'mc.zip' write error (#25695)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 859203547410de151eb063c9c2356576e5ee468f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Apr 18 07:51:25 2023 +1200

    🔨 Fix, clean up STM32F1 envs (#25697)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 5a3806633ad8af04815cb3281f33dc1d0348495e
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Apr 16 03:26:08 2023 +0200

    🐛 Fix Configuration Embedding (#25688)

commit 0ece7ca66d55fb46d0a919dd34385770284943e8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Apr 23 08:59:51 2023 +1200

    🩹 Status / Host Prompt followup (#25720)

    Followup to #25679

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 2fb47afa4aa16167cbbc21d9b51faa190f584322
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:06:56 2023 -0500

    🧑‍💻 HostUI::continue_prompt method

commit d2e84e84466dabe070bfe93099a677f113155b37
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 17:51:45 2023 -0500

    🧑‍💻 Status Message cleanup

commit 3340491f90ba603748e2c1d0b287f7a86da30e1f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:00:25 2023 -0500

    🧑‍💻 JyersUI code cleanup

commit d3991011e4b75b63825126a215781e0e750ee416
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 18:09:16 2023 -0500

    🧑‍💻 Apply simplified ?:

commit 02178bdcaf569f9a42af1f82ca89d555a29f4ca5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 14 22:22:07 2023 -0500

    🔧 Trigorilla / Chiron updates

    Followup to c3f34e4e

commit 8bc6f7707da7cee2b6eacc084f56fbe4bf91f2b1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 13 04:06:35 2023 -0500

    🔨 Improve runout script check

commit 141cfdde2cfa1691f9af16051bb213cb47430ca1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 13 04:05:56 2023 -0500

    🩹 Fix AUTOFAN_CASE

    Followup to #25554

commit 4781d57912a52112f1045d01d992e51ab1148286
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 21:28:21 2023 -0500

    🔧 Move FIL_RUNOUT_PIN for Chiron + GLCD

commit 6ebbfa832cfb9542d4998595394de31b5ff6a555
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 18:43:18 2023 -0500

    🧑‍💻 Clarify G28 R / R0

commit cbbcc01b4743cf87406619692087bdf77c23db89
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 11 21:26:46 2023 -0500

    🚸 Minor M43 improvements

commit b5ccd65fb5423f1b52d123dec6ec7b5f33891850
Author: David Fries <David@Fries.net>
Date:   Mon Apr 10 04:38:38 2023 -0500

    ⚡️ Skip a redundant BLTouch::command (#25656)

commit cf1f56f132af0a8c7556ddee1e201a20c9efa7e5
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 20:26:18 2023 -0500

    🔧 Move TFT sanity checks

commit 1e2de0e036c8192b130b4a50d8fbabaf52245fc4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 7 01:49:27 2023 -0500

    🎨 Detab some build files

commit cf28f48481333f0cd2ccf5b2cb406eebfc004810
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Apr 7 01:33:03 2023 -0500

    🎨 Apply const (#25643)

commit 69e8f2ee99c3e12385c39e9ed568e8913687496e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Fri Apr 7 18:32:25 2023 +1200

    🚸 Support CoreXY without Z (#25630)

commit 2be9f98b9f00d7aced5ee4313edb240893f5b348
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 6 17:24:32 2023 -0500

    📝 Update Ender # labels

commit c2c1ff8da98cd81104703f083d44e2e7ec3ef627
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Apr 6 16:58:12 2023 -0500

    🧑‍💻 Update pinsformat.js

commit e24087478d44fa2f03281ebc3d18ee6e53b1f8bc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Apr 4 20:46:46 2023 -0500

    🐛 Ensure root for 'M503 C'

commit 641295032fd5e5f42746603e2eb680d70b789970
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sat Apr 1 06:19:48 2023 +0200

    🌐 Update Italian language (#25587)

commit 466ce0b8d26fd3110ac59979a105ac85d6656116
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Aug 16 13:44:00 2021 -0500

    🩹 Fix displayed mix percentages

commit 59a2cb032f7ba912cdb48aadf8c152feb61d9839
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 29 21:50:04 2023 -0500

    🩹 Fix Ender-3 V2 with no fan

commit 85e28f31232c789a4a91683637fbef1ec145f0d2
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Wed Mar 29 05:45:22 2023 +0100

    🔨 MarlinSimUI updates (#25589)

commit bbb75ab9b3daae9f6fd0a07db3e427f69f212743
Author: John Unland <junland.foss@gmail.com>
Date:   Tue Mar 28 23:23:27 2023 -0500

    🔨 Improve Docker local tests support (#25583)

commit 637cd952cad0ac08ab0d6ad906f16d5eca34aa51
Author: Andrew <18502096+classicrocker883@users.noreply.github.com>
Date:   Wed Mar 29 00:20:52 2023 -0400

    🎨 Remove unused ProUI : UBLValidMesh (#25591)

commit d04b3ff8028a1c432370f230132621cf26480e66
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 28 16:14:37 2023 -0500

    🔧 Fix up WiFi options (#25586)

commit 51b33ccf905b6623d1966d4f9dcc081914f5484d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 03:01:09 2023 -0500

    🔨 INI Updates

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit f452df047d437f01a401eee3944a2ba0e2a873d1
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Mon Mar 27 21:55:56 2023 +0300

    🐛 Fix M23 long filename support (#25540)

commit cd0bfcd3f29bdf86a165f852d01bf3af018e32fc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 04:36:12 2023 -0500

    🧑‍💻 Auto Fan / Cooler Fan updates (#25554)

commit bcf30988cbf04b2416d321ced84e9b932e819b70
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Mar 26 02:09:27 2023 -0700

    🩹 Fix Touch Calibration first point (#25298)

commit a40e17d94b6faceb5fc26e899571bbc092d06e08
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 25 20:17:54 2023 -0500

    🎨 Timer tweaks

commit d66f4baba6d9ccac9f425ba8d297e8b14cdfdd46
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 25 17:14:21 2023 +1300

    🩹 Fix Chitu3D V6 default probe pin (#25552)

commit 26cb2d5b0827fa1b5d18691a29cc3a13cb3f2a70
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 18:43:53 2023 -0500

    🩹 Update TRONXY_V10 SPI_FLASH pins

commit 376e940ae9c6fc62063649bf08bdb7ef53d29008
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 02:43:20 2023 -0500

    🎨 LPC_SOFTWARE_SPI => SOFTWARE_SPI

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit ebe3fe08180c6cc6583b49576d498241a4409572
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 24 02:40:29 2023 -0500

    🎨 Pins header comments

    Co-Authored-By: Martin Turski <turningtides@outlook.de>

commit 0d7e30bcd8f8f0c9039cf2e0a06610dde7dac48c
Author: Martin Turski <turningtides@outlook.de>
Date:   Fri Mar 24 05:08:28 2023 +0100

    🩹 Reset touch screen calibration on failure (#25334)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit accfab85a21745527bb2fbf7445c3ad8744899ca
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Mar 23 17:19:20 2023 -0500

    🎨 calibration_stage => stage

commit d68ad9e0b140e13c5862d693c62e236d75aa5566
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 21:57:06 2023 -0500

    🩹 Fix a serial_ternary

commit 70c8859e7f5d49e55d567b2ea61e24f84f9d4992
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Mar 19 13:17:21 2023 +1300

    🩹 Fix Ender 2 stock LCD (#25538)

commit 980fba810d54fd74d94e0216b174b6b0282ae7f0
Author: George Fu <nailao_5918@163.com>
Date:   Sat Mar 18 17:47:54 2023 +0800

    🐛 Fix FYSETC Cheetah v2.0 Servo/Probe pins (#24635)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit d0bdb9c281c98a02bf2f7b93e481f4a91928f182
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 17:13:06 2023 -0500

    ⚡️ Misc. optimizations

commit 821d7969f46abeca729bcf19b103b2fbd41535b4
Author: Davide Rombolà <davide.rombola@gmail.com>
Date:   Sat Mar 18 07:35:54 2023 +0100

    🎨 Suppress warning (#25529)

commit dcbba65962cce76dbd28760ba9f2002f4e2a761a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 18 01:22:50 2023 -0500

    🧑‍💻 More IntelliSense-friendly declares

commit 5c3dd467c7c369cd8ddbd5327639d034d3c8c93f
Author: Michael Hill <mhill@hillsoftware.com>
Date:   Sat Mar 18 01:56:07 2023 -0400

    ✨ Sovol v1.3.1 (Sovol SV06) (#25267)

commit e50980e32b1b15b1e5a1829cc40673a12057f3ee
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date:   Thu Mar 16 01:15:54 2023 +0100

    🩹 Fix DWIN MarlinUI Fan/E/XY (#25502)

commit c3b037e0f313ae7fd254508e82f9076249cb6a38
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 15 19:13:09 2023 -0500

    🩹 Fan Menu / Status fixes

    Followup to #21888

commit 71e6f701f3604beb1d7c87fb288b9a75d64d4007
Author: Abdullah YILMAZ <h.abdullahyilmaz@hotmail.com>
Date:   Mon Mar 6 01:29:43 2023 +0300

    🌐 Update Turkish language (#25447)

commit 7f9f922d84d33317bc0b7282f3fb46a8d1dd6d90
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Fri Mar 3 21:27:15 2023 +0100

    🌐 Update Italian language (#25454)

commit 197b3198b55d1aa3c3d2bd8bd7a89f3970176e43
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Mar 3 13:42:46 2023 -0600

    📝 Fix a comment

commit e03dfb8ca1eed0a372801482c70dc5c152a463fe
Author: jamespearson04 <jamespearson04@hotmail.co.uk>
Date:   Fri Mar 3 20:26:38 2023 +0000

    🐛 Fix UBL 'G29 J' mesh tilt (#25453)

    Fix regression from #24214

commit cba3b2c527feecb40f56e756cb7d89108bc8bbe0
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Wed Mar 1 21:07:23 2023 -0700

    🚸 Improve CocoaPress Touch UI (#25446)

commit a9a6d1f716bae7f61dc4b8d40c97c96c7a31571a
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Feb 27 15:27:58 2023 +1300

    📝 Link to archived RA Control Panel page (#25424)

commit 61ccd4599e443c09e327559f28f4dd08dc881a49
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Tue Jan 31 06:07:51 2023 +0100

    🌐 Update Italian language (#25309)

commit bab847809c3f896aa166f3ec0ff378f3a6645c0e
Author: Roman Moravčík <roman.moravcik@gmail.com>
Date:   Tue Jan 31 06:07:03 2023 +0100

    🌐 Update Slovak language (#25305)

commit 011087731a06259f75aa2ddee55720a5d478be1b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 28 06:11:53 2023 +1300

    🧑‍💻 Add IA_CREALITY CI test (#25434)

commit b7ee06bb29fb5a38c5e2963201a79fd45ef56e55
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue May 16 19:52:36 2023 -0500

    🔨 Use 'build_src_filter'

commit 5f8df0aa21718f20b6c9b4158c23c469c3a38500
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 26 17:49:51 2023 -0500

    🔨 Fix thread-unsafe deque iteration

commit b338159f9d40c06469ad4f6f9f7517d20c29728e
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed May 17 06:50:57 2023 +1200

    🐛 Fix MKS Robin Nano 1.3 F4 pin collision (#25838)

commit 2399a24466b22138d7b82336035dc2bf5efecc0f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Apr 10 22:17:50 2023 +1200

    🔧 Update thermocouple 2 pin sanity check (#25627)

commit d05acb762634acff6a1cefc3a2ed32819c23e88f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Apr 10 21:16:52 2023 +1200

    🩹 Fix MARLIN_F446Zx_TRONXY variant (#25659)

    Followup to 9be1554f

commit 81d4f8f26a95ee2c85c02a1b5612b798db19ea9a
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date:   Sat Apr 8 02:55:10 2023 +0100

    🩹 Fix SD partitionTable packing (#25648)

commit b0c3db67f09b02df4c66f75a06a66fc38dfcdeed
Author: Jason Smith <jason.inet@gmail.com>
Date:   Fri Apr 7 18:52:33 2023 -0700

    🎨 Suppress M122 sign warning (#25613)

commit ea6430ddf6c2ceda60b2aecc1143434f91513917
Author: Eduard Sukharev <sukharev.eh@gmail.com>
Date:   Wed Mar 15 00:49:49 2023 +0300

    🐛 Fix long filename read/report (#25509)

commit ccb4d11696ff886430463bafe020246582f75c42
Author: John Robertson <john@cirtech.co.uk>
Date:   Sat Mar 18 10:33:15 2023 +0000

    🔧 Sanity-check PRINTCOUNTER_SAVE_INTERVAL + ESP32 I2S Exp (#25527)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 176ecf4f82d1d18b1a99fceb20aad2eeedbd7842
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Mar 11 00:08:07 2023 -0800

    🐛 Fix Anet ET4 SD_SS_PIN (#25492)

commit 3ec5d6da6e4365fc9a800be6607733465c24ad6e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Mar 11 19:17:25 2023 -0600

    ⚡️ Exit from ISR on AVR already does sei

    Co-Authored-By: tombrazier <68918209+tombrazier@users.noreply.github.com>

commit 75aa880b63eedba3641db1f359dde065637dfc46
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Mar 10 15:56:33 2023 -0800

    ✨ BTT Octopus Max EZ 1.0, SKR 3.0 / 3.0 EZ (#25387, #25495, #25535)

commit a50ff5d7c7267ce7658f1b8b086691e8ead4faca
Author: Sion Williams <sion5@hotmail.co.uk>
Date:   Thu Mar 9 08:45:01 2023 +0000

    🔨 VSCode + Devcontainer support (#22420)

commit 504f09f9448b8c1789ea2ba047a0ad47fa09064c
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Sun Mar 5 22:28:50 2023 +0000

    🐛 Fix Flash EEPROM for STM32G0B1CB (#25469)

commit aae1102c540db5ca9bd6594dd961416a3138dc2b
Author: Hans-Christian Ebke <ebke@cs.rwth-aachen.de>
Date:   Sun Mar 5 23:25:11 2023 +0100

    🐛 Fix apply_power for SPINDLE_SERVO (#25465)

commit a40ff1357e5f36fedfff9db0f0d8dab4dc7c610b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Wed Mar 1 00:16:27 2023 +0000

    🐛 Fix LA retract/feedrate edge case (#25445)

    Followup to #25442

commit dfd1fb736d6e37cad5ff0c773ee3453e2a055332
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 28 17:50:06 2023 -0600

    🔨 Improve config.ini example fetch

commit 6d8c9f6ed17396784ea2765b50583b36a9a6f423
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 1 20:06:47 2023 -0600

    🌐 Regenerate language data

commit db0c8b31f7a6da568c2a305e633c5f2c4ac0571c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Mar 5 19:15:22 2023 -0600

    🧑‍💻 Script to make non-accented languages

commit 0e3d9518726f13ac1d37b4dedac09aeaff0a6f1f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Mar 1 19:07:47 2023 -0600

    🔨 Update font scripts

commit 22e6365b2f8c0cfe3f18f9758a347db20eb9a29b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 28 16:16:11 2023 +1300

    🔧 Fix Sensorless Probe sanity-check err (#25417)

commit abd710b5d660e1f2bb99e576704d5e2c98e8fd91
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Feb 27 23:00:13 2023 +0000

    🐛 Fix Linear Advance E position tracking (#25442)

    Fix regression from #24951

commit d5c312cff078ae0dae57a1021daccf9f5ffff157
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Mar 3 20:37:10 2023 +0000

    🐛 Fix ISR_SHAPING_LOOP_CYCLES (#25335)

commit 64f9c17f3baf7ea0ad6081f0bea7952595d79258
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Mar 4 09:32:04 2023 +1300

    🔨 Fix 'step' type in createTemperatureLookupMarlin.py (#25455)

commit bac334c74eecdb35b1cb8d6ce8d6066b91095652
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Feb 26 19:03:28 2023 -0800

    🔨 Fix env STM32G0B1RE_btt, add …_manta_btt (#25431)

commit 071d54ec7082f265b3665ab086e5580925f8b124
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Feb 23 21:38:11 2023 -0600

    🎨 Use LIMIT macro

commit c4ac8a25730d10fa08890a4b216dc06c22dd8a93
Author: Guðni Már Gilbert <gudni.m.g@gmail.com>
Date:   Fri Feb 24 03:29:47 2023 +0000

    ⚡️ Reduce edit_screen code size (#25420)

commit 53698b8f62b00c7e4f85a943150e8cc64015e7d4
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 22 14:30:02 2023 -0600

    🔧 Fix Einsy Rambo TMC driver check

commit d5d497f2c5185bd7b153ed7195a8216f37e5a42c
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 21 18:22:16 2023 -0600

    🔨 Fix marlin_custom.* without lib_deps

commit e65e38afafec9f85be603ffefcc1817d8732b9a4
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Tue Feb 21 22:37:11 2023 +0000

    🐛 Fix AVR maths used by Stepper (#25338)

commit 9d56b7f073e01ebca1f4d3fb54a49393191e9e1d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Wed Feb 22 11:27:47 2023 +1300

    🔨 Encrypt some MKS Robin (#25349)

commit 1748abde0af17b452e940df20fba65abb4fc6ef0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 21 15:08:25 2023 -0600

    🧑‍💻 Fix preheat tests (nested macro limit ~256)

    Followup to #25407

commit 7afd823aa59f5197dab80d397da744ec48896f2b
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 21 15:25:22 2023 +1300

    🔧 Sanity-check hotend max / preheat temps (#25407)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 4a1cbffbe5d6fc2619537eb7d0a07c70b1cb8e29
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Feb 21 13:58:40 2023 +1300

    📺 Update Re-ARM VIKI2 SPI pins (#25411)

commit 94780bbb54e4d75986c53ea39223d3e51df8e23e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Feb 17 22:12:11 2023 -0600

    🚸 Interruptible PLR (#25395)

commit 838df37efd55a1ffdeffbd838ebffb3618ab36d2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Feb 16 12:58:51 2023 +1300

    🐛 Fix FastPWM calculations (#25343)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 7a8c9847e664d0bd400b0ba4ee4514d1c9f966c3
Author: Trevin Small <trevincub03@gmail.com>
Date:   Wed Feb 15 19:00:10 2023 -0500

    ✏️ Fix README typo (#25388)

commit 50f4e6b2705e61d4a850e04f2d55909f4abfcc4d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Feb 14 22:29:47 2023 -0600

    🎨 Tweak VALIDATE_MESH_TILT

commit db8f501dfefd801bc42db2ea36c82afc48eac427
Author: Frederik Kemner <stuff+github@fredo.org>
Date:   Wed Feb 15 05:25:47 2023 +0100

    🚸 SPI endstops for X/Y Dual and Core (#25371)

commit 255bc3c90c181c302ca0640c0ebc097313f4cc4a
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Wed Feb 15 04:57:39 2023 +0100

    📝 Fix BTT_MINI_12864_V1 comment (#25366)

commit 38c4c7f4b17f1de96996b2b15ec064b5926f30f1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Feb 11 21:29:32 2023 -0600

    🔨 Suppress native build warnings

commit fecb66779a098a6ad09706a6f6662c525a032c18
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Feb 9 06:46:02 2023 +0300

    🔨 Adjust INI comments (#25183)

commit f7485cea60e7bd78015e6f9aa48cde605d9a9a88
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:31:02 2023 -0600

    🩹 Extra axis min home with Delta Sensorless Probe

commit a49d286118343f36759dba941c96b95dfaa36c38
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:29:37 2023 -0600

    🩹 Extra axes for Tool Change

commit 59c88575643782b9d34a3b2ea6bd54dfb7717b71
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:28:56 2023 -0600

    🩹 Various simple fixes

commit 6e38ec3a3e0d074b900c4fd3b901d10ae974ac29
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:26:59 2023 -0600

    🩹 Safe Bed Leveling updates

commit 93c61b1ba8f1e105c3a36d083e98c95c95196e5e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 20:19:12 2023 -0600

    🩹 Misc. extra axis updates

commit 87d744995271945b814d9f4c84d3b791422c0c50
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 19:39:21 2023 -0600

    🩹 Use 'M205 D' when 'B' is an axis

commit 98c9ecd5c516e470a3b14727fe19a0b695f26d45
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Feb 8 19:37:10 2023 -0600

    🔧 Add a test for extra axes

commit 8976bc5605e1c0696fb42c72d0fec4c88880f289
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Tue Feb 7 22:39:09 2023 -0800

    ✨ BigTreeTech Manta M4P, M5P, M8P V1.0 / 1.1, E3 EZ (#25001)

commit e3cff7a28a74ec468e15ff8a2799076be37361e9
Author: Victor Oliveira <rhapsodyv@gmail.com>
Date:   Sat Feb 4 05:10:26 2023 -0300

    🧑‍💻 General 'MediaFile' type alias (#24424)

commit 4000db2be39f7cf35cf85ec2272ad31578fcc44a
Author: vyacheslav-shubin <shubin-vv@krista.ru>
Date:   Sat Feb 4 10:36:07 2023 +0300

    🧑‍💻 Add SD Card 'hide' method for dev usage (#22425)

commit f9621e2e8e9f2301924a72fcc1e8d110806145ff
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Thu Feb 2 17:41:46 2023 -0800

    📝 Fix Z*_ENDSTOP_ADJUSTMENT comments (#25295)

commit 1a184e5a82b0908cbe9649688cd15de92f776a9e
Author: kg333 <matthew@kyengineer.com>
Date:   Wed Feb 1 19:02:26 2023 -0500

    📺 Melzi v4 with BTT SKR Mini E3 (#25321)

commit 6e427350db0fbe3fd294d34c9c178df7dd1bf8d4
Author: Martin Turski <quiret@vfemail.net>
Date:   Fri Feb 3 04:01:22 2023 +0100

    🔨 Fix test build path with spaces (#25329)

commit 79e23752aea243b84a3703e3f158cdeffd230346
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Wed Feb 1 01:51:11 2023 -0600

    🔧 Fix SD sorting sanity checks (#25318)

commit 858de4ff3f24b9b1d20f39da031ed8293e6c61bc
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 30 22:11:50 2023 -0600

    🔧 Fix build with no Y axis (#25311)

commit bac0b35b85d59a83b9fa2789c9048de99017f02e
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Mon Jan 30 21:57:36 2023 -0600

    🩹 Fix G61 axis parameters with no offset (#25312)

commit 60f38576620e993e06fc19166cb3d68f275096e6
Author: Darren Garnier <dgarnier@reinrag.net>
Date:   Mon Jan 30 23:00:49 2023 -0500

    🔨 Fix config.ini URL fetch (#25313)

commit b3c004eed97989b8e26664438528138567efb349
Author: avionix-g <63542699+avionix-g@users.noreply.github.com>
Date:   Wed Jan 25 23:14:52 2023 -0500

    🐛 Fix MKS board Ultipanel support (#25278)

commit 9e755a25c7fa727b4143d8ba5a9acdc712b7667c
Author: xBiohazardx <36756950+xBiohazardx@users.noreply.github.com>
Date:   Fri Jan 27 01:05:04 2023 +0100

    ✏️ Fix probe invert flag (#25282)

commit 0d831183ba6d3fa0d7780cd135a8d8a95bd0592a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 25 21:37:10 2023 -0600

    🔧 Refine Input Shaping check (#25280)

commit 0ed083aba81710af6aefb678c3a15117abd5f79f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Jan 20 21:17:13 2023 -0600

    SDIO retry, hsd clock, etc.

commit 2c39f848885a83766fbf47ec6c76dc3804908fd1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 24 02:21:02 2023 -0600

    🔧 Overridable Stepper EN init

commit b7e421610f4546c15ecdb65ee9f144a3d33f4b86
Author: Bob Kuhn <bob.kuhn@att.net>
Date:   Mon Jan 23 01:37:35 2023 -0600

    🐛 Fix Ender-2 Stock Display with Melzi (#25258)

commit 536e8a7d1e98e98089d571939a2c9613e604ab8c
Author: MarkMan0 <38912829+MarkMan0@users.noreply.github.com>
Date:   Sun Dec 18 06:48:33 2022 +0100

    🐛 Fix, Refactor PID scaling (#25096)

commit 8c3425811a3073b17ac1ed3100198e115f298174
Author: John Robertson <john@cirtech.co.uk>
Date:   Tue Jan 17 23:53:39 2023 +0000

    🐛 Fix potential I2S buffer overwrite (#25113)

commit dd892c6e75f4683d286147d9a3daa47cc7297ea0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 16 22:11:49 2023 -0600

    🎨 Heading cleanup

commit 947a9cb000a4cc4f8a3eccf675ae852daf3b3a75
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 15 06:48:17 2023 -0600

    🎨 Language / menu cleanup

commit 62487c67b6b0142a5a610d46b65c4a07de0f3e62
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 14 07:44:57 2023 -0600

    ✏️  ProUI followup

commit 6cf085d72407d5afb15cbb942854ff3d04ef3519
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Jan 15 01:11:49 2023 -0600

    🔧 Added MOTHERBOARD error text

commit c3c6432be44f6ee1895bd33137e0cea34ea048df
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Mar 14 16:48:17 2023 -0500

    🎨 Misc. formatting

commit e7c4a868309f00656e28d1b2d3cda03913695073
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Jan 23 01:10:16 2023 -0600

    🧑‍💻 Fix D5 warning

commit dd518f0ce14fb7512652fb925819802a039f9080
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Jan 21 22:57:56 2023 -0600

    🐛 Fix homing_needed_error

commit d62119ea5baa8a650bce6bdc6f38520ac228fb02
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 11 20:31:46 2023 -0600

    🔧 Input Shaping sanity checks

commit 71cb723746cbd6ba210005f14cea45dbf4f3256a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 11 01:19:54 2023 -0600

    🩹 Fix Sim with USE_WATCHDOG disabled

commit 58d94f407bc2116056cd9e90e86e98143a97105e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Jan 11 01:19:45 2023 -0600

    🔨 Improve config.ini parser

commit 82f7c373c53c22c6a76ed1ca7fff91be3b408855
Author: Alex Z <ad_user@runbox.com>
Date:   Wed Jan 11 15:22:28 2023 +1000

    🐛 Fix Chitu V6 Z_STOP_PIN (#25227)

commit 1e9e92368f5ffc00ada970f2681bed1ca755d48a
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date:   Sun Jan 8 04:22:21 2023 -0500

    🚸 ProUI updates (#25176)

commit 9a22c21b5b3b6cec3ca7275587431618b1c230aa
Author: Sebastien BLAISOT <sebastien@blaisot.org>
Date:   Sun Jan 8 06:07:14 2023 +0100

    🐛 Fix Neopixel 1 startup (#25203)

commit 885b5534164cb3ae3bd91eb7ada590980b99357c
Author: Vlad Popescu <popescuvlad94@gmail.com>
Date:   Sun Jan 8 07:04:58 2023 +0200

    🩹 Fix E3V2 MarlinUI XYZ frame (#25206)

commit 9ff2818ce44753167e088ba32741a6ba90f12591
Author: Richard Layton <rlayton@gmail.com>
Date:   Sat Jan 7 21:03:29 2023 -0800

    📝 Linux Sim apt-get line (#25208)

commit 5ff467c8c0bbdf7fbbef7a039dc92f626c7a22a6
Author: Richard Layton <rlayton@gmail.com>
Date:   Sat Jan 7 02:42:21 2023 -0800

    📝 More native.ini docs (#25201)

commit f16fdd7814006fd5cdcf8b270c7408237725f86c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 7 21:39:58 2023 +1300

    🩹 Update MKS_GEN_13 MOSFET pins (#25126)

commit e872b575f89d0f884f7c38c5545432daef899444
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Jan 7 19:07:39 2023 +1300

    🩹 Replace pow() with _BV() (#25186)

commit 8b5014f2645aac2048b4c03243410edd98132baf
Author: Mike Bignell <1911467+mikezs@users.noreply.github.com>
Date:   Sat Jan 7 05:54:35 2023 +0000

    🩹 Fix missing IS_MELZI (#25190)

commit 9ff1c307454c5a7df1256958dc7a63b6cabcc155
Author: Ashley 'DrToxic' Devine <41945324+DrToxic@users.noreply.github.com>
Date:   Thu Jan 5 23:06:35 2023 +0000

    🎨 Misc. cleanup (#25194)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit a286daf69796f5ec594c089ee59552776507b530
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Fri Jan 6 00:48:22 2023 +0200

    🚸 Attach USB media (#25120)

commit 9383c2aa76c25c4fd59e123cb6260adbad1fcb57
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 3 19:40:23 2023 -0600

    🧑‍💻 Add Temperature::is_above_target

commit 58e9dc0cbf22f43ee6da719c4468858809ef9414
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 3 18:57:33 2023 -0600

    🎨 Rename *_temp_error to *temp_error

commit 5e69a3dbf499d635f4f7c927659f167d157093e3
Author: Timothy Hoogland <me@timothyhoogland.com>
Date:   Tue Jan 3 18:52:19 2023 -0600

    🩹 Remove extraneous EZBoard V1 autofans (#25182)

commit c990a35bb0fdc76ef2ae829ff09094e5ed9bdf75
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Jan 3 04:09:40 2023 -0600

    🎨 Misc. IS cleanup

commit f2017d41115e298d263d9b356a246b583004562e
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Jan 1 04:03:50 2023 +0100

    🚸 MarlinUI edit steps/mm to 2 decimal places (#25144)

commit c5f95bfe97dc3f1cfc2478b38d039ae2641c1e1c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 31 16:55:15 2022 +1300

    🧑‍💻 Fix type warning (#25149)

commit f13d7f27d162b1e992d2a0228971bc78fe075569
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 31 16:44:51 2022 +1300

    🔨 FILAMENT_RUNOUT_SCRIPT sanity check (#25150)

commit b1099b1c6582a38b61f2ffe2cd2da47c3023a254
Author: Lukas Erlacher <l.erlacher@googlemail.com>
Date:   Sat Dec 31 14:39:15 2022 +1100

    🔧 Add H8 to Creality 4.2.2 stepper warning (#25154)

commit 44e20d2d6a121ad0bd076a257a6f246fdac7335b
Author: Lukas Erlacher <l.erlacher@googlemail.com>
Date:   Sat Dec 31 14:38:01 2022 +1100

    🚸 Z Servo Probe is HAS_STOWABLE_PROBE (#25158)

commit c54c8c225485b9b1d2b4da0b7e0a779684af7813
Author: Timothy Hoogland <me@timothyhoogland.com>
Date:   Fri Dec 30 21:01:11 2022 -0600

    🩹 Remove extraneous EZBoard V2 autofans (#25166)

commit bcb0a370a54d9afcf0fae74614bde2159fb83283
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Dec 30 19:43:46 2022 -0600

    🚸 Hide IS menu while busy

commit da43218d76a49de66ab945737458b11e1380cada
Author: Vlad Popescu <popescuvlad94@gmail.com>
Date:   Sat Dec 31 04:53:45 2022 +0200

    🐛 Avoid lambda for menu items (#25169)

commit d71a60a14b5eb3bb4fe48425459220d57cd7914f
Author: Stefan Kalscheuer <stefan@stklcode.de>
Date:   Sat Dec 31 06:49:44 2022 +0100

    🐛 Fix Mesh Bed Leveling Z correction (#25122)

commit 246f001521ecfc81e595972c83ccc38e8e6bea69
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Fri Dec 30 19:03:18 2022 -0800

    📝 Fix Configs URL (#25167)

commit a039081728cda8e829cb4a90116d150674f69e53
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Dec 20 21:14:58 2022 -0600

    🧑‍💻 Fix ONBOARD_FLASH_SIZE

commit 3334582f868950d58028e400f47a78d22e0fa4f2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 19 14:42:28 2022 -0600

    🔖 Version 2.1.2

commit b2d72de4947b38d48e3f0ff3433f13da0cf0ffaf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 18 17:22:11 2022 -0600

    📝 Update 2.1.x README

commit cfa747ed0878c51f646365c9b296303d03413c84
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 18 15:48:47 2022 -0600

    🧑‍💻 M593 F "min" freq

commit 92b2076dda8efea4a1437647199d02d011e6f034
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 18 15:42:20 2022 -0600

    🐛 Fix Melzi encoder

commit eff6c407a5034778297ef76c3369abc7506c0603
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 17 22:00:18 2022 -0600

    🩹 Fix LCD_FOR_MELZI with Tronxy Melzi

commit 569bbb18d0cf38fe506b1181c308c4bea581ce2a
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sat Dec 17 07:45:55 2022 +0300

    🐛 Fix DOGM time overflow, alignment (#25103)

commit 471330b56ea2f95cd9ec1b726fa7a10d422ce10c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 17 17:43:54 2022 +1300

    🎨 Suppress warning (#25101)

commit 2a724bd94eb472d8c7ce4c59cb408b5624d8c2c3
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Dec 17 10:01:14 2022 +1300

    ✨ BTT Octopus with STM32-F407 (#25031)

commit cea2ab1d7fac912ae29db9e7c2e6e8bc4c3a2e1f
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Fri Dec 16 20:45:14 2022 +0000

    ✨ BigTreeTech EBB42 v1.1 (#24964)

commit 5198a554574300857bfad9a2e761b9a7b197fa08
Author: ils15 <igorleite-ils@hotmail.com>
Date:   Fri Dec 16 17:37:56 2022 -0300

    🔧 Use multi-XYZ 'STOP' pins for MIN/MAX (#24855)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit cbb56e35361e814949f5aa4a380ad3b5f93ab2a0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Aug 24 10:15:57 2022 -0500

    ✨ Robin Nano v1 CDC (USB mod)

    Followup to #24619

commit b3f4eaf6fdf4d331139573154dfa391cc940b02c
Author: Dipl.-Ing. Raoul Rubien, BSc <rubienr@sbox.tugraz.at>
Date:   Tue Dec 13 04:23:45 2022 +0100

    🩹 Fix M115_GEOMETRY_REPORT (#25092)

commit 7815b200510d486fa6b35c51418d73f2f580fd0f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Dec 13 12:01:45 2022 +1300

    🩹 Inverted probe pin flag (K8400) (#25085)

commit ffbf6acd6c856fb72ab9f5329f6efddab806e538
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 12 16:46:50 2022 -0600

    🩹 Fix M502 init of default motion

    Fix regression from #25035

commit 8bafc1d9aeda45c208304a768a4141497b1a925c
Author: alextrical <35117191+alextrical@users.noreply.github.com>
Date:   Mon Dec 12 22:11:09 2022 +0000

    🩹 Use custom I2C pins for OLED (#24970)

commit ac05f0cb8b4c539509b48d034106246f66ebee17
Author: Bart Meijer <brupje@gmail.com>
Date:   Mon Dec 12 22:36:50 2022 +0100

    ✨ SAMD21 HAL / Minitronics v2.0 (#24976)

commit ec6349f2acd940c6b7b29ef9204c635ba2e38c6c
Author: Alexander Gavrilenko <jmz52@users.noreply.github.com>
Date:   Tue Dec 13 00:13:31 2022 +0300

    ✨ TFT_COLOR_UI async DMA SPI (#24980)

commit d082223fee393e7c0f833757853fada3a3a48ddf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 11 19:46:55 2022 -0600

    📝  Replace Twitter with Fosstodon

commit e07a059b2dde9b6d5e1048d71e3f6f265a05ebbb
Author: Simon Pilepich <simon.pilepich@kogan.com.au>
Date:   Mon Dec 12 12:12:28 2022 +1100

    🔧 Anycubic alternate Z1/Z2 wiring (#25071)

commit 313716e7fc5133ea8b1b70e75075840cc7b2b8b9
Author: Krzysztof Błażewicz <blazewicz.krzysztof@gmail.com>
Date:   Sun Dec 11 20:27:27 2022 +0100

    ✨ JyersUI TMC Settings (#25048)

commit 726555901c6b7a6eae71d3297729b6ee2ffbc632
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sun Dec 11 10:59:25 2022 -0800

    🔧 Custom Menu Sanity Check (#25079)

commit 3ad684b10bc8a7c6631dda4e6615238499289013
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 11 12:56:45 2022 -0600

    🔨 Updated 'mfconfig init'

commit 408a53bcdd5b5c5781596c2ba9e435cfe4525c74
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 11 06:44:09 2022 +1300

    🔨 No env:mega1280 for MIGHTYBOARD_REVE (#25080)

commit eae339b8dcd43797cc285605826a23370e28165e
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sat Dec 10 17:28:48 2022 +0000

    ⚡️ Better IS buffer size calc (#25035)

commit 79b88471f00e3a8a7e5ee8ed440c6e40059b4815
Author: Vovodroid <vovodroid@users.noreply.github.com>
Date:   Sat Dec 10 17:03:54 2022 +0200

    ✨ Two controller fans (#24995)

commit 86a3362bf6830fea77c15aa1b139847569372671
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 11 04:00:51 2022 +1300

    📌 Pins updates for Longer LK5, etc. (#25012)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 0efeedf26274b7a66e21899ab99a5dd70e8ae657
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Dec 8 01:08:53 2022 +0300

    🚸 Progress display followup (#24879)

commit c86f20010d916ba5a09f7c4320a37f5cdfc75f48
Author: Sebastien BLAISOT <sebastien@blaisot.org>
Date:   Wed Dec 7 22:49:38 2022 +0100

    ✨ M150 S default index (#23066)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 5a97ffc41415481d0e285c3478e582cbdd467bad
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Dec 7 12:18:09 2022 -0600

    🔨 Return error on mftest exit

commit 273728602109e208c1ca32d2ac7dad59dcc1307a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Dec 5 11:01:08 2022 -0600

    📝 Update config comments

commit 86a10dc459056cfb49055758e3fed0e0825043ae
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Dec 5 16:38:23 2022 +1300

    🐛 Fix Fast PWM on AVR (#25030)

    Followup to #25005

commit ecdf07f0555ce0d71ac3fd1fcd9efd07c14209ad
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Mon Dec 5 00:04:11 2022 +0200

    ✏️ Fix missing ) (#25055)

commit 686ce0c0e220c73b32a1d29ae3d48c6b336b024f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Dec 4 15:35:45 2022 -0600

    🔨 Fix CI Test clean step (2)

commit 3c550e0f1910927fa691f2e62a18cebb6ddd58fd
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 3 20:49:46 2022 -0600

    🎨 Misc. cleanup

commit 071dae0c288e75c26f6779b830af1e6153682854
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 3 20:19:18 2022 -0600

    🔨 Fix CI Test clean step

commit df2a2488a8911e50d4840e17e9ae91bd05bd369b
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Sun Dec 4 02:14:31 2022 +0000

    🐛 Fix TMC5160 + Input Shaping overcurrent (#25050)

commit c3090bd4e8df8c9eb3f32e31e0a8e37e92242681
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sat Dec 3 20:20:19 2022 -0500

    🩹 Ender 3v2 DWIN MarlinUI Fixup (#24984)

commit 0fadb56150aedf4759b5d5a959506c9ef7854443
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Dec 3 19:18:03 2022 -0600

    🎨 Trailing whitespace

commit eb125c95b68af813a05a732273be62e6dd2e23af
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 4 14:09:02 2022 +1300

    🔨 Update renamed.ini (#25042)

commit 26edeefeb9ee79e6e2c992a192d8465a5a24bbfb
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Dec 4 14:05:22 2022 +1300

    🩹 Fix MSG_MOVE_N_MM substitution (#25043)

commit 96b8c28376fbefa92ebd71119bda1db66daa20ea
Author: kisslorand <50251547+kisslorand@users.noreply.github.com>
Date:   Fri Dec 2 08:19:34 2022 +0200

    🚸 G30 move to logical XY (#24953)

commit db3865520f2626bac5abd6cfd81a1cfbd44cbdab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Dec 1 23:39:17 2022 -0600

    🎨 Misc. cleanup

commit 51c1645ceb878a316b548095c68e42623dce16f6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 17:52:56 2022 -0500

    🧑‍💻 Use spaces indent for Python

commit 5eb39d5277e11a29deaa47690f35b7170ba97447
Author: トトも <85485984+ElectronicsArchiver@users.noreply.github.com>
Date:   Sun Nov 27 23:52:06 2022 -0500

    📝 Formatted Team Overview (#25029)

commit 0537e78572aa3e5aec8e3f444f826dbd5b0b8455
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 27 23:23:00 2022 -0600

    🐛 Fix G-code resend race condition

    As pointed out in #24972 by @silycr, but simplified.

commit 95019bf526c0f2db2fae10e8548271dd03a057c0
Author: Taylor Talkington <taylor.talkington@gmail.com>
Date:   Sun Nov 27 22:41:27 2022 -0500

    ✨ Ender-3 V2 DWIN for BTT Octopus V1.1 (#24983)

commit 6f5ad55953b2029c1f92ff6554a14ca2b93c1b5d
Author: Chris Bagwell <chris@cnpbagwell.com>
Date:   Sun Nov 27 21:40:11 2022 -0600

    ⚡️ More SCURVE cycles on unoptimized cortex-m0 (#24955)

commit 57f6c93192c823049814c18ba48738d91ed1435f
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Mon Nov 28 03:38:15 2022 +0000

    ⚡️ Input Shaping improvements (#24951)

commit d2ece1e7137931085824d0bcf8f7732e7fcae1e3
Author: Trivalik <3148279+trivalik@users.noreply.github.com>
Date:   Mon Nov 28 02:06:44 2022 +0100

    🐛 Fix missing va_end in UnwPrintf (#25027)

commit 12017887f40a0a2cacf0728215fcfb631e10e383
Author: studiodyne <42887851+studiodyne@users.noreply.github.com>
Date:   Sun Nov 27 04:29:13 2022 +0100

    🐛 Fix MILLISECONDS_PREHEAT_TIME / mintemp (#24967)

commit 3a28a1fd1d4139ddbf39cc6c53ee661a45b012b2
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Sat Nov 26 20:11:14 2022 -0700

    🩹 Fix ADVANCE_K + DISTINCT_E_FACTORS sanity check (#25007)

commit 360e03797f3ef35e34a0eb6902918235f5403047
Author: Manuel McLure <manuel@mclure.org>
Date:   Sat Nov 26 18:30:59 2022 -0800

    🔧 Merge TMC26X with TMC config (#24373)

commit 6185b50dbedf7f564703ebdb9acc97e0a99388f1
Author: Radek <46979052+radek8@users.noreply.github.com>
Date:   Sun Nov 27 02:31:44 2022 +0100

    🐛 Fix SKR mini E2 V2 + BTT_MINI_12864_V1 (#24827)

    See https://github.com/bigtreetech/BIGTREETECH-SKR-mini-E3/issues/686#issuecomment-1296545443

commit b2b8407a7506860e3d885f7dcdc7cfd6a5ea280e
Author: Vasily Evseenko <svpcom@gmail.com>
Date:   Sun Nov 27 04:26:40 2022 +0300

    🍻 Fix Z increase on toolchange without UBL (#22942)

commit c1684a1dbe3a64e82bb8380bd927c1ec7a7db927
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Nov 27 14:22:08 2022 +1300

    🩹 Fix UBL menu compile (#25020)

commit 7d0f1dd17cbc0b2a34f720d5deaf83c8e8888def
Author: mikemerryguy <57319047+mikemerryguy@users.noreply.github.com>
Date:   Sat Nov 26 20:14:05 2022 -0500

    🚸 Add 50mm manual move (#24884)

commit b6051fe847a5aa70c51c3cde29f47c1add29fb29
Author: Thomas Buck <taucher.bodensee@googlemail.com>
Date:   Sun Nov 27 01:59:13 2022 +0100

    🚸 Optional Cutter/Laser status for HD44780 (#25003)

commit b9bed1ca6908f2e2be9d867b008e1b9e3ac49ef4
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Nov 26 08:23:24 2022 +0100

    🚸 COLOR_UI sleep timeout / setting (#24994)

commit b8ba9d60bb7f12d059d62382dc09abf40537de16
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 26 19:21:47 2022 +1300

    🔧 Fix TPARA (…SCARA, DELTA) settings (#25016)

commit 8fd42eeeb60198c08bf48bb3d6c4369df666c22d
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date:   Sat Nov 26 04:41:49 2022 +0100

    ✏️ Fix Robin nano env typo (#24993)

commit 19b73a6f2927fc982af70891cb4025f4acd6d36c
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 26 16:40:24 2022 +1300

    📺 FYSETC_MINI_12864_2_1 with BTT_SKR_E3_DIP (#24986)

commit db60e0e7dc829a8dee94736f4be15aa5bb6fe4d4
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sat Nov 26 14:17:24 2022 +1300

    🩹 Fix planner typo (#24977)

commit 505d73d2bae31662ac833f316d934239b392e93d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Nov 22 12:47:27 2022 +1300

    🐛 MKS_MINI_12864 on SKR 1.3 needs FORCE_SOFT_SPI (#24850)

commit d05419a8d9c5b025d40b560869c9fc9baefc4f67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Tue Nov 22 02:45:57 2022 +0300

    🔧 Check Delta homing direction (#24865)

commit 9772f7806bf83d000f761c79e177a9e21573223e
Author: phigjm <39876427+phigjm@users.noreply.github.com>
Date:   Tue Nov 22 00:41:14 2022 +0100

    🩹 Fix SERVICE_INTERVAL reset (#24888)

commit 473d2b888ad642d8129cc44b6ba436882ff704c8
Author: Marcio T <mlt4356-github@yahoo.com>
Date:   Mon Nov 21 16:25:56 2022 -0700

    Fix FAST_PWM_FAN / TouchUI with NO_MOTION_BEFORE_HOMING (#25005)

    Fix regressions from #20323, #23463

commit 968f04defbb137db94c5a8424e0af26723b1ba72
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Nov 14 21:35:24 2022 +1300

    🩹 Fix 2 thermocouples (#24982)

    Followup to #24898

commit 30a885a7ef7c6eafd10c13eda39c0d365388cc02
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Nov 14 02:26:31 2022 -0600

    🐛 Fix M808 starting count

    Reported by adcurtin on Discord

commit 847391cfc15c2d4490d24f2a7356c551e776fbeb
Author: Justin Hartmann <zadarimm@gmail.com>
Date:   Mon Nov 14 00:50:02 2022 -0500

    🩹 Fix Overlord compile (#24947)

commit 6ea192abe95f1b3341828bb2dc4ea56df19bdff4
Author: Pascal de Bruijn <pmjdebruijn@pcode.nl>
Date:   Mon Nov 14 05:59:25 2022 +0100

    🚸 M306: Indicate MPC Autotune (#24949)

commit 0de4ec4099c17403ea3f1ac0e42d8234e74614c2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Mon Nov 14 17:45:28 2022 +1300

    🩹 Allow max endstops MKS Monster 8 V2 (#24944)

commit c9fa680db94ead330d59be954b032f755dbacce9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 11 20:35:07 2022 -0600

    🐛 Fix Anycubic / Trigorilla pins, etc. (#24971)

commit 379d388b0763ab5295a1c887d0c39eb7cd88bb8b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 11 16:09:26 2022 -0600

    🎨 Prefer axis element over index

commit 7002e72f1c48b5cf01d6e9c90e72d8cab785d107
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Nov 6 23:49:38 2022 -0600

    🩹 Fix EEPROM write for !LIN_ADVANCE

    Fixes #24963
    Followup to #24821

commit fc2f3cdf4079596a84f0e8ac88e9f8dfc295f03f
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 4 20:10:59 2022 -0500

    🩹 MAX Thermocouple followup

    Followup to #24898

commit 7feeffdf06170244ff0586d09b745eb25a7e542a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Nov 4 20:00:56 2022 -0500

    🩹 leds.update needed for reset_timeout

    Followup to #23590

commit ac5464c37c4ea0a728ca76934ba61c46e7f1ba68
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Nov 3 21:29:22 2022 -0500

    🧑‍💻 More direct encoder spin

commit a121c80e1a31cc696f425238ee82a22a1f8fd647
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Tue Nov 1 17:14:18 2022 -0500

    🎨 Update SAMD51 headers

commit 2778b007656e2993d7be08ba854f29eb620ab96d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sun Oct 30 15:41:19 2022 -0500

    🎨 Format some lib-uhs3 code

commit 4737af7d70f5660f6e5617bd6ce1080875d6bd28
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 30 16:45:08 2022 +1300

    📌 ZRIB V52-V53 Servo Pins (#24880)

commit 38375cf7a75f7b7f6686737fd1651b440267709b
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Sat Oct 29 23:35:12 2022 -0400

    ✨ Tenlog MB1V23 IDEX board (#24896)

commit ddec5faf5abddef5e5cb233b6f3cd31ce2e82d53
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Sun Oct 30 01:45:33 2022 +0200

    🌐 Update Italian language (#24915)

commit cbdafd36e02f9fd39b60adb86ce95bea951f5092
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 30 12:42:36 2022 +1300

    📌 Remove unused RX/TX pins (#24932)

commit 9f5b0b85670f5684357b8a9a1dd39a87de513b13
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Oct 29 16:39:26 2022 -0700

    🔧 Update Display Sleep LCD Check (#24934)

commit d9ffae65787f2c37484f424ff5171c80210d659f
Author: Justin Hartmann <zadarimm@gmail.com>
Date:   Sat Oct 29 19:37:36 2022 -0400

    🩹 Buttons Followup (#24935)

    Followup to #24878

commit 1540e8e1d4545005413fe8bd7f6aaf2eef958aa6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 24 17:04:55 2022 -0500

    🩹 Allow for last non-servo extruder

commit 9a4715f31a43216e97f52fd2c1adf49a2cc2a710
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Oct 25 10:47:23 2022 +1300

    🐛 Fix move_extruder_servo (#24908)

commit a9969d92ea17cb454353df466e579fa229ffe8c8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Oct 24 17:44:52 2022 -0400

    🐛 Fix FTDUI Status Screen Timeout (#24899)

commit d87d7474c932949e74248c562921b2b85e063999
Author: Manuel McLure <manuel@mclure.org>
Date:   Mon Oct 24 14:25:47 2022 -0700

    🩹 Fix spurious "bad command" (#24923)

commit 4ce2f1e5babba8dcee160ffbbd6d907f0c934355
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Sat Oct 22 23:35:31 2022 -0500

    🩹 Fix M593 report

commit 44636f3b74c9d5e552dbb49f313ed8b2e17189eb
Author: kurtis-potier-geofabrica <77456752+kurtis-potier-geofabrica@users.noreply.github.com>
Date:   Sat Oct 22 00:13:56 2022 -0400

    🚸 Up to 3 MAX Thermocouples (#24898)

commit e812540f26fae304764f22023e049dc58a29ca93
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 21 19:45:20 2022 -0500

    🔧 Clean up unused ESP_WIFI pins

commit c1f0f26bffb1013e686d74f930287fa9f4cda083
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date:   Fri Oct 21 22:34:22 2022 +0100

    🚀 ZV Input Shaping (#24797)

commit 57654498675207180c7a232ff671348441b7046a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 21 15:41:51 2022 -0500

    🔨 gcc-12 for macOS native

commit c8b2d0c0fd50fb528d995fad782d62752d086a6e
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Fri Oct 21 14:03:38 2022 -0400

    ✨ Controllerfan PWM scaling, kickstart (#24873)

commit bdd5da50988c2bfdae6839bea65747ba3afcadbd
Author: silycr <32662182+silycr@users.noreply.github.com>
Date:   Sat Oct 22 04:31:46 2022 +1030

    🚸 Probe pins for Chitu V5 (#24910)

commit 4d9bf91edcf81dc7cdbbb71166b619a06b785329
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Oct 20 15:23:22 2022 +1300

    🔧 Some STM32 UART Sanity Checks (#24795)

commit 682a9b6fbefca8d58971030213b301344a2db9b8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 19 21:00:14 2022 -0500

    🎨 Misc. variant cleanup, translation

    Followup to #24787

commit a913b2437b1f792492d1ac29f5eff51f512320cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Wed Oct 19 21:36:39 2022 -0400

    🐛 Fix Print Timer stop with MarlinUI abort (#24902)

commit 6b1d738995c443f5d047d79130a146dce3f7e9e0
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Oct 20 14:29:15 2022 +1300

    🔧 No Native USB on AVR (#24906)

commit dd224b4eb9050709c6466aea62d60caf6c866f8e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 17 23:00:26 2022 -0500

    🧑‍💻 Pins and debug list cleanup (#24878)

commit 2e2abbcb48d74a12131a56859e6cb6e66f08fe87
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 17 21:41:22 2022 -0500

    🎨 CONF_SERIAL_IS => SERIAL_IN_USE

commit 485fb7759662bca476ce1b7147945f851c82c425
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Oct 18 16:41:41 2022 +1300

    ✨ Tronxy v10 (#24787)

commit 29294007ef6ef372ceec4ca31047d9612feb173e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Oct 17 20:24:19 2022 -0700

    🔧 No Sleep for CR-10 Stock Display (#24875)

commit 256ac01ca2c47bfc187b499bacd11fd6260a6d37
Author: karliss <karlis3p70l1ij@gmail.com>
Date:   Tue Oct 18 04:01:18 2022 +0300

    🐛 Fix compile without Y/Z (#24858)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit ca1968a8428f2e3a6550ee69206c6ae257dad07c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Mon Oct 17 12:25:37 2022 -0700

    🔧 Check Sensorless Homing on all axes (#24872)

commit 6a084e3704656f5b2e7291589376ec2b2296a5c1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date:   Mon Oct 17 15:17:51 2022 -0400

    🐛 Fix bed/chamber PID P edit (#24861)

commit 9ae078916605e79cbdf0e42b9c69dbc9b4841103
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 17 13:01:45 2022 -0500

    🎨 HAS_SPI_FLASH => SPI_FLASH

commit 031ff2d024a40410d31f4e0d61261c304ef158da
Author: Dan Royer <dan@marginallyclever.com>
Date:   Sat Oct 15 22:03:42 2022 -0700

    🐛 Fix and improve Polargraph (#24847)

    Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit b3e7d1e91e9e8e7e9184184cfd2d28cbb7bb24e8
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 16 13:40:00 2022 +1300

    🐛 Fix operators for V axis (#24866)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit f39f4d02889b77c4d72b1b84d6f06792786a9a8c
Author: mjbogusz <mjbogusz@users.noreply.github.com>
Date:   Sat Oct 15 01:59:31 2022 +0200

    🩹 Fix TFT LCD in Simulation (#24871)

commit a4d58e887667a14d7a6639b579416ff799309b0e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Fri Oct 14 13:15:37 2022 -0500

    🎨 MMU2 cleanup

commit c52cf77d0ade00b7cdf9e796e98b6c294c2abaa6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 18:15:29 2022 -0500

    🐛 Fix M876 without emergency parser

    Fix regression from 1fb2fffdbf

commit bfcb8c704a8ddbdd86d145151e3a305a780034f1
Author: adam3654 <adam3654@gmail.com>
Date:   Wed Oct 12 19:03:32 2022 -0400

    ✨ DOGM Display Sleep (#24829)

commit 0047b3064da8b7e1a3789b497853fb93c1e7f7f9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Thu Oct 13 01:57:22 2022 +0300

    🩹 Fix temperature include (#24834)

commit 5c195078ffd5d3e86cf9c836cf1313746516d750
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 17:53:42 2022 -0500

    🎨 Misc. variant cleanup

commit 1a6f9daee89e048fe9794e60b0ce71a359d21357
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Wed Oct 12 15:24:05 2022 -0500

    🧑‍💻 Min and max for base types

commit 505f0a647e9ac26c69b5aafb781672c399c28cb8
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Wed Oct 12 02:31:37 2022 +0300

    ✨ MKS SKIPR board (#24791)

commit 62b7db9bb783f509ab44e109f9b6e82da3d58048
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 10 18:02:18 2022 -0400

    🔨 Update mfinfo for 2.1.x

commit 3c870f2d4bcec4ed7e1499a7dee541c448d8751a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Mon Oct 10 17:51:33 2022 -0400

    🧑‍💻 Min and max for base types

commit 0203e32c734c780fba3059ac0f8fbdc57f37ff85
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date:   Mon Oct 10 20:49:37 2022 +0200

    ✨ ADVANCE_K per-extruder (#24821)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit 84812645666ee6988fdadf59d3bc83be9bf53d8d
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sun Oct 9 18:30:47 2022 +0300

    ♻️ Set Progress without LCD (#24767)

    Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>

commit b0f02b8f9ed553160561ae9b277080e410b96905
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date:   Sat Oct 1 23:04:50 2022 +0300

    🩹 Fix Color UI touchscreen sleep (#24826)

commit d6ff8f0062ec29acf2403e6e6c21528fd08862cd
Author: Adam <54421854+aamott@users.noreply.github.com>
Date:   Sat Oct 1 10:49:12 2022 -0600

    🩹 Fix Switching Toolhead compile (#24814)

commit 8b37b60e5872a96304e0ce5100556556a83f3d4f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 2 05:39:10 2022 +1300

    🧑‍💻 Einsy Rambo EXP headers (#24825)

commit 5c68d26d4e14a86b82c67a8ad5ebe41897833456
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 2 05:35:47 2022 +1300

    🔨 Detect feature parsing error (#24824)

commit 74435b0dcb2a1a157811631ae79fe8064443d8a6
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Sun Oct 2 05:25:00 2022 +1300

    ✨ Creality v5.2.1 board (#24815)

    Followup to #24760

commit f17a07df99fcb248af05872ee1bac0375d8ae174
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Sat Oct 1 09:19:51 2022 -0700

    🔧 Thermistor (66) sanity-check (#24803)

commit a58f27763f67a0ee88bb58e4305ce32bd7ff916b
Author: Eduardo José Tagle <ejtagle@hotmail.com>
Date:   Thu Sep 29 19:54:59 2022 -0300

    🐛 Fix DUE compile and errors (#24809)

commit 5aca6ff4f2816d8e55281ebe7e7cbcbe49777572
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date:   Thu Sep 29 17:30:53 2022 -0500

    🩹 Fix some vector_3 cast operators

commit 7b000966f06a258eef229334d9ffe9e74463c45c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date:   Wed Sep 28 08:05:06 2022 -0700

    🔧 Update Creality 4.2.2 Driver Warning (#24806)

commit 6ae07088400dcb259993afb58f5e06c651c3beb2
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Thu Sep 29 04:03:40 2022 +1300

    🩹 Disable DEBUG_DGUSLCD (#24798)

commit 44e4a9c7b1deb0c5633068180a59aceaea3bcbe7
Author: Yuri D'Elia <wavexx@users.noreply.github.com>
Date:   Wed Sep 28 16:49:30 2022 +0200

    🎨 Remove non-const compare operators (#24810)

commit 215fcefc1b0c8c626efa7f74b78f0a03b5f1280f
Author: Plynix / Ben Hartiwch <77836725+Plyn1x@users.noreply.github.com>
Date:   Wed Sep 28 16:46:50 2022 +0200

    ✨ Creality v5.2.1 board (#24760)

commit 827f9ae7923cb80ffa0bb480b53a85e016e4b789
Author: discip <53649486+discip@users.noreply.github.com>
Date:   Mon Sep 26 23:42:52 2022 +0200

    ✨ Pt1000 with 2k2 pullup (SKR 3 / EZ) (#24790)

commit e44f1565356b1a93020292721ee39ed9416d762f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date:   Tue Sep 27 10:25:54 2022 +1300

    ✏️ Followup for M524 (#24775)

    Followup to #24761

commit f1a05d19b0886921cbe3529a22bcf796…
@TUR106
Copy link

TUR106 commented Dec 23, 2023

radek8

Hi, friend. Can you help me connect BTT SKR Mini E3 V2.0 with BTT Mini12864 v1.0.
I uploaded your file to Marlin 2.1.2.1 - pins_BTT_SKR_MINI_E3_common.zip. I connected according to this diagram.
198934480-8d2367dc-1920-4924-b592-69256863680d

The image appears, menu works well, but the backlight does not work.

After I uncommented and corrected the lines.
#define NEOPIXEL_LED
#if ENABLED(NEOPIXEL_LED)
#define NEOPIXEL_TYPE NEO_RGB
It gives errors when compiling and I don't know how to fix them.

edited files.zip

@radek8
Copy link

radek8 commented Dec 24, 2023

@TUR106
Can you send the error message?

@TUR106
Copy link

TUR106 commented Dec 24, 2023

@TUR106 Can you send the error message?

112

.pio\libdeps\STM32F103RC_btt_USB_maple\Adafruit NeoPixel/Adafruit_NeoPixel.h:377:3: error: 'GPIO_TypeDef' does not name a type
GPIO_TypeDef *gpioPort; ///< Output GPIO PORT
^~~~~~~~~~~~
*** [.pio\build\STM32F103RC_btt_USB_maple\src\src\gcode\queue.cpp.o] Error 1
In file included from Marlin\src\gcode\sd../../feature/leds/neopixel.h:38:0,
from Marlin\src\gcode\sd../../feature/leds/leds.h:39,
from Marlin\src\gcode\sd../../feature/leds/printer_event_leds.h:28,
from Marlin\src\gcode\sd\M1001.cpp:47:
.pio\libdeps\STM32F103RC_btt_USB_maple\Adafruit NeoPixel/Adafruit_NeoPixel.h:377:3: error: 'GPIO_TypeDef' does not name a type
GPIO_TypeDef *gpioPort; ///< Output GPIO PORT
^~~~~~~~~~~~
*** [.pio\build\STM32F103RC_btt_USB_maple\src\src\gcode\sd\M1001.cpp.o] Error 1

@radek8
Copy link

radek8 commented Dec 24, 2023

How did you configure Marlin?
Many users make the mistake of downloading configuration files from some site. He then copies these into the Marlin directory, which he downloaded from another repository in different versions than the configuration files he used.
Compilation then ends with errors because the compiler cannot find variables that may have been renamed in different versions.

@radek8
Copy link

radek8 commented Dec 24, 2023

radek8

Hi, friend. Can you help me connect BTT SKR Mini E3 V2.0 with BTT Mini12864 v1.0. I uploaded your file to Marlin 2.1.2.1 - pins_BTT_SKR_MINI_E3_common.zip. I connected according to this diagram.

You may not copy the configuration files from this thread to the current version of Marlin!

@TUR106
Copy link

TUR106 commented Dec 25, 2023

radek8
Hi, friend. Can you help me connect BTT SKR Mini E3 V2.0 with BTT Mini12864 v1.0. I uploaded your file to Marlin 2.1.2.1 - pins_BTT_SKR_MINI_E3_common.zip. I connected according to this diagram.

You may not copy the configuration files from this thread to the current version of Marlin!

That's exactly what I did. I copied the configuration file into the current version of Marlin.
Compilation proceeds without problems until I activate the line #define NEOPIXEL_LED

Which version of Marlin should I download for the configuration file to work?

@radek8
Copy link

radek8 commented Dec 25, 2023

Never do not copy files from other versions of Marlin.
Use the default files and edit the necessary lines.
Why did you copy files from this page?
What was your problem?

@TUR106
Copy link

TUR106 commented Dec 25, 2023

Nikfy do not copy files from other versions of Marlin. Use the default files and edit the necessary lines. Why did you copy files from this page? What was your problem?

I bought a board and a screen with a special cable. But the screen didn't work at all. There was no image and no backlight.
изображение_viber_2023-12-25_13-47-19-973
изображение_viber_2023-12-25_13-47-19-780

@radek8
Copy link

radek8 commented Dec 25, 2023

The cable you bought is not for this display.
Use your own cable from this thread and the configuration for this display. However, you must not copy files from another version of Marlin.

@radek8
Copy link

radek8 commented Dec 25, 2023

Which version of Marlin should I download for the configuration file to work?

You don't need to copy the file.
The display must also work in the new version Marlin

@TUR106
Copy link

TUR106 commented Dec 26, 2023

Which version of Marlin should I download for the configuration file to work?

You don't need to copy the file. The display must also work in the new version Marlin

I installed clean Marlin 2.1.2.1. And I didn’t change any files. I only edited native files.
And I just edited:

Configuration.h

90 #define MOTHERBOARD BOARD_BTT_SKR_MINI_E3_V2_0

101 #define SERIAL_PORT 2

114 #define BAUDRATE 115200

123 #define SERIAL_PORT_2 -1

162 #define X_DRIVER_TYPE TMC2209
162 #define Y_DRIVER_TYPE TMC2209
163 #define Z_DRIVER_TYPE TMC2209
175 #define E0_DRIVER_TYPE TMC2209

2833 #define BTT_MINI_12864_V1

Commented in file pins_BTT_SKR_MINI_E3_common.h - 278 line:

Marlin-2.1.2.1\Marlin\src\pins\stm32f1\pins_BTT_SKR_MINI_E3_common.h

278 //#error "CAUTION! FYSETC_MINI_12864_2_1 / MKS_MINI_12864_V3 / BTT_MINI_12864_V1 requires wiring modifications. See 'pins_BTT_SKR_MINI_E3_common.h' for details. (Define NO_CONTROLLER_CUSTOM_WIRING_WARNING to suppress this warning.)"

After that I compile the firmware. The image and menu work, but there is no backlight.
изображение_viber_2023-12-26_19-35-57-113

@TUR106
Copy link

TUR106 commented Dec 26, 2023

I connect the board and screen according to the following diagram (as indicated in this topic):

BIGTREETECH MINI shema

or

BTT SKR mini E3 V2 0 mini12864 1 0 shema

@TUR106
Copy link

TUR106 commented Dec 26, 2023

When I activate NEOPIXEL_LED, and Correcting NEO_RGB:

3294 #define NEOPIXEL_LED
3295 #if ENABLED(NEOPIXEL_LED)
3296 #define NEOPIXEL_TYPE NEO_RGB

When compiling, it produces the same errors as before.
123

What am I doing wrong?

@radek8
Copy link

radek8 commented Dec 26, 2023

Can you send me your config files and both pin files?

@TUR106
Copy link

TUR106 commented Dec 26, 2023

Can you send me your config files and both pin files?

Files.zip

@radek8
Copy link

radek8 commented Dec 26, 2023

Can you try this modified pins_BTT_SKR_MINI_E3_V2_0.h file?

pins_BTT_SKR_MINI_E3_V2_0.zip

@TUR106
Copy link

TUR106 commented Dec 26, 2023

Can you try this modified pins_BTT_SKR_MINI_E3_V2_0.h file?

pins_BTT_SKR_MINI_E3_V2_0.zip

333333

@TUR106
Copy link

TUR106 commented Dec 26, 2023

Can you try this modified pins_BTT_SKR_MINI_E3_V2_0.h file?

pins_BTT_SKR_MINI_E3_V2_0.zip

With my files, does the compilation complete successfully on your computer?

@radek8
Copy link

radek8 commented Dec 26, 2023

I have a different version of the Marlin, a different SKR and a different display.
I can try to click on your configuration and compile.

@TUR106
Copy link

TUR106 commented Dec 26, 2023

I don’t understand why only I have this problem when compiling? My brain is already exploding. Out of nerves, I ordered another set of board and screen...

@radek8
Copy link

radek8 commented Dec 26, 2023

I used a 20 hour old version of Marlin.
I am getting the same error.

@TUR106
Copy link

TUR106 commented Dec 26, 2023

I am not an expert in this topic. but others had no problems. Is there any way to force the backlight to turn on? I'm not interested in changing colors. The main thing is that the image is visible.

@radek8
Copy link

radek8 commented Dec 26, 2023

Unfortunately. I probably can't help you with that

@TUR106
Copy link

TUR106 commented Dec 26, 2023

friend, thanks for your time. and for your attention. I will continue to look for a solution. If I find anything, I'll let you know.

@TUR106
Copy link

TUR106 commented Dec 28, 2023

К сожалению. Я, наверное, не смогу тебе с этим помочь

Hi, friend. I chose Marlin bugfix 2.1.x. And I did the compilation through Auto Build Marlin - STM32F103RC_btt_USB (256).
And it compiled the firmware without red errors.
654654654

But after updating the board firmware... the backlight did not appear.

fantastic))))

@radek8
Copy link

radek8 commented Dec 29, 2023

Also try enabling this option.
define LED_USER_PRESET_STARTUP
define LED_COLOR_PRESETS

@TUR106
Copy link

TUR106 commented Jan 14, 2024

Also try enabling this option. define LED_USER_PRESET_STARTUP define LED_COLOR_PRESETS

In general, everything worked out. What I've done:
Downloaded pure marlin 2.1.2.1. Replaced configuration files from:
Configurations-release-2.1.2.1\config\examples\Creality\Ender-3\BigTreeTech SKR Mini E3 2.0

Configuration.h activated the lines:
BTT_MINI_12864_V1

ooooo222

NEOPIXEL_LED,
line 3297 changed to: #define NEOPIXEL_TYPE NEO_RGB

ooooo111

Configuration_adv.h activated the lines:
LED_CONTROL_MENU,
LED_USER_PRESET_STARTUP,
LED_COLOR_PRESETS

ooooo

I connected the display according to the diagram as in my pictures above.

Compiled this option
ooooo222333

And I’m shocked - everything worked today... And the new screen also arrived today :))))))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants
@shahabaz @radek8 @P1ayer2 @Sporkforce @Legiotech @stilkata8888 @TUR106 and others