|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if HAS_TRINAMIC_CONFIG
|
|
|
|
|
|
|
|
#include "tmc_util.h"
|
|
|
|
#include "../MarlinCore.h"
|
|
|
|
|
|
|
|
#include "../module/stepper/indirection.h"
|
|
|
|
#include "../module/printcounter.h"
|
|
|
|
#include "../libs/duration_t.h"
|
|
|
|
#include "../gcode/gcode.h"
|
|
|
|
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
#include "../module/planner.h"
|
|
|
|
#include "../libs/hex_print.h"
|
|
|
|
#if ENABLED(MONITOR_DRIVER_STATUS)
|
|
|
|
static uint16_t report_tmc_status_interval; // = 0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_LCD_MENU
|
|
|
|
#include "../module/stepper.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check for over temperature or short to ground error flags.
|
|
|
|
* Report and log warning of overtemperature condition.
|
|
|
|
* Reduce driver current in a persistent otpw condition.
|
|
|
|
* Keep track of otpw counter so we don't reduce current on a single instance,
|
|
|
|
* and so we don't repeatedly report warning before the condition is cleared.
|
|
|
|
*/
|
|
|
|
#if ENABLED(MONITOR_DRIVER_STATUS)
|
|
|
|
|
|
|
|
struct TMC_driver_data {
|
|
|
|
uint32_t drv_status;
|
|
|
|
bool is_otpw:1,
|
|
|
|
is_ot:1,
|
|
|
|
is_s2g:1,
|
|
|
|
is_error:1
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
, is_stall:1
|
|
|
|
, is_stealth:1
|
|
|
|
, is_standstill:1
|
|
|
|
#if HAS_STALLGUARD
|
|
|
|
, sg_result_reasonable:1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
#if HAS_TMCX1X0 || HAS_TMC220x
|
|
|
|
uint8_t cs_actual;
|
|
|
|
#endif
|
|
|
|
#if HAS_STALLGUARD
|
|
|
|
uint16_t sg_result;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
#if HAS_TMCX1X0
|
|
|
|
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
static uint32_t get_pwm_scale(TMC2130Stepper &st) { return st.PWM_SCALE(); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static TMC_driver_data get_driver_data(TMC2130Stepper &st) {
|
|
|
|
constexpr uint8_t OT_bp = 25, OTPW_bp = 26;
|
|
|
|
constexpr uint32_t S2G_bm = 0x18000000;
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
constexpr uint16_t SG_RESULT_bm = 0x3FF; // 0:9
|
|
|
|
constexpr uint8_t STEALTH_bp = 14;
|
|
|
|
constexpr uint32_t CS_ACTUAL_bm = 0x1F0000; // 16:20
|
|
|
|
constexpr uint8_t STALL_GUARD_bp = 24;
|
|
|
|
constexpr uint8_t STST_bp = 31;
|
|
|
|
#endif
|
|
|
|
TMC_driver_data data;
|
|
|
|
const auto ds = data.drv_status = st.DRV_STATUS();
|
|
|
|
#ifdef __AVR__
|
|
|
|
|
|
|
|
// 8-bit optimization saves up to 70 bytes of PROGMEM per axis
|
|
|
|
uint8_t spart;
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
data.sg_result = ds & SG_RESULT_bm;
|
|
|
|
spart = ds >> 8;
|
|
|
|
data.is_stealth = TEST(spart, STEALTH_bp - 8);
|
|
|
|
spart = ds >> 16;
|
|
|
|
data.cs_actual = spart & (CS_ACTUAL_bm >> 16);
|
|
|
|
#endif
|
|
|
|
spart = ds >> 24;
|
|
|
|
data.is_ot = TEST(spart, OT_bp - 24);
|
|
|
|
data.is_otpw = TEST(spart, OTPW_bp - 24);
|
|
|
|
data.is_s2g = !!(spart & (S2G_bm >> 24));
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
data.is_stall = TEST(spart, STALL_GUARD_bp - 24);
|
|
|
|
data.is_standstill = TEST(spart, STST_bp - 24);
|
|
|
|
data.sg_result_reasonable = !data.is_standstill; // sg_result has no reasonable meaning while standstill
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else // !__AVR__
|
|
|
|
|
|
|
|
data.is_ot = TEST(ds, OT_bp);
|
|
|
|
data.is_otpw = TEST(ds, OTPW_bp);
|
|
|
|
data.is_s2g = !!(ds & S2G_bm);
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
constexpr uint8_t CS_ACTUAL_sb = 16;
|
|
|
|
data.sg_result = ds & SG_RESULT_bm;
|
|
|
|
data.is_stealth = TEST(ds, STEALTH_bp);
|
|
|
|
data.cs_actual = (ds & CS_ACTUAL_bm) >> CS_ACTUAL_sb;
|
|
|
|
data.is_stall = TEST(ds, STALL_GUARD_bp);
|
|
|
|
data.is_standstill = TEST(ds, STST_bp);
|
|
|
|
data.sg_result_reasonable = !data.is_standstill; // sg_result has no reasonable meaning while standstill
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // !__AVR__
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_TMCX1X0
|
|
|
|
|
|
|
|
#if HAS_TMC220x
|
|
|
|
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
static uint32_t get_pwm_scale(TMC2208Stepper &st) { return st.pwm_scale_sum(); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static TMC_driver_data get_driver_data(TMC2208Stepper &st) {
|
|
|
|
constexpr uint8_t OTPW_bp = 0, OT_bp = 1;
|
|
|
|
constexpr uint8_t S2G_bm = 0b111100; // 2..5
|
|
|
|
TMC_driver_data data;
|
|
|
|
const auto ds = data.drv_status = st.DRV_STATUS();
|
|
|
|
data.is_otpw = TEST(ds, OTPW_bp);
|
|
|
|
data.is_ot = TEST(ds, OT_bp);
|
|
|
|
data.is_s2g = !!(ds & S2G_bm);
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
constexpr uint32_t CS_ACTUAL_bm = 0x1F0000; // 16:20
|
|
|
|
constexpr uint8_t STEALTH_bp = 30, STST_bp = 31;
|
|
|
|
#ifdef __AVR__
|
|
|
|
// 8-bit optimization saves up to 12 bytes of PROGMEM per axis
|
|
|
|
uint8_t spart = ds >> 16;
|
|
|
|
data.cs_actual = spart & (CS_ACTUAL_bm >> 16);
|
|
|
|
spart = ds >> 24;
|
|
|
|
data.is_stealth = TEST(spart, STEALTH_bp - 24);
|
|
|
|
data.is_standstill = TEST(spart, STST_bp - 24);
|
|
|
|
#else
|
|
|
|
constexpr uint8_t CS_ACTUAL_sb = 16;
|
|
|
|
data.cs_actual = (ds & CS_ACTUAL_bm) >> CS_ACTUAL_sb;
|
|
|
|
data.is_stealth = TEST(ds, STEALTH_bp);
|
|
|
|
data.is_standstill = TEST(ds, STST_bp);
|
|
|
|
#endif
|
|
|
|
TERN_(HAS_STALLGUARD, data.sg_result_reasonable = false);
|
|
|
|
#endif
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TMC2208 || TMC2209
|
|
|
|
|
|
|
|
#if HAS_DRIVER(TMC2660)
|
|
|
|
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
static uint32_t get_pwm_scale(TMC2660Stepper) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static TMC_driver_data get_driver_data(TMC2660Stepper &st) {
|
|
|
|
constexpr uint8_t OT_bp = 1, OTPW_bp = 2;
|
|
|
|
constexpr uint8_t S2G_bm = 0b11000;
|
|
|
|
TMC_driver_data data;
|
|
|
|
const auto ds = data.drv_status = st.DRVSTATUS();
|
|
|
|
uint8_t spart = ds & 0xFF;
|
|
|
|
data.is_otpw = TEST(spart, OTPW_bp);
|
|
|
|
data.is_ot = TEST(spart, OT_bp);
|
|
|
|
data.is_s2g = !!(ds & S2G_bm);
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
constexpr uint8_t STALL_GUARD_bp = 0;
|
|
|
|
constexpr uint8_t STST_bp = 7, SG_RESULT_sp = 10;
|
|
|
|
constexpr uint32_t SG_RESULT_bm = 0xFFC00; // 10:19
|
|
|
|
data.is_stall = TEST(spart, STALL_GUARD_bp);
|
|
|
|
data.is_standstill = TEST(spart, STST_bp);
|
|
|
|
data.sg_result = (ds & SG_RESULT_bm) >> SG_RESULT_sp;
|
|
|
|
data.sg_result_reasonable = true;
|
|
|
|
#endif
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TMC2660
|
|
|
|
|
|
|
|
#if ENABLED(STOP_ON_ERROR)
|
|
|
|
void report_driver_error(const TMC_driver_data &data) {
|
|
|
|
SERIAL_ECHOPGM(" driver error detected: 0x");
|
|
|
|
SERIAL_PRINTLN(data.drv_status, PrintBase::Hex);
|
|
|
|
if (data.is_ot) SERIAL_ECHOLNPGM("overtemperature");
|
|
|
|
if (data.is_s2g) SERIAL_ECHOLNPGM("coil short circuit");
|
|
|
|
TERN_(TMC_DEBUG, tmc_report_all());
|
Squashed commit of the following:
commit 4b9fce2e8588f5dea0658e93fa0260830a851874
Merge: ecb08b15be e17d710c5c
Author: Sergey <sergey@terentiev.me>
Date: Mon Dec 27 16:47:22 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit e17d710c5c4c96e069f64854e3fcdb77abcf90e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 22:13:20 2021 -0600
๐ Marlin 2.0.9.3
commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Dec 25 19:41:01 2021 -0800
๐ Fix MKS Robin E3 NeoPixel pin default (#23350)
commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date: Sun Dec 26 10:12:20 2021 +0800
๐ Fix open for bin rename (#23351)
commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 03:27:45 2021 -0600
๐ง Move MOTHERBOARD closer to top
commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date: Sat Dec 25 05:57:07 2021 -0300
โจ Per-axis TMC hold multiplier (#23345)
commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Fri Dec 24 14:03:32 2021 +0800
โจ MKS TinyBee board support (#23340)
Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>
commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 23 15:19:39 2021 +0700
๐ง Group FAST_PWM_FAN.options (#23331)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Dec 21 23:09:55 2021 -0500
โจ BLTouch High Speed mode runtime configuration (#22916, #23337)
Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 15:44:04 2021 +1300
โจ Option to reset EEPROM on first run (#23276)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date: Sat Dec 18 18:58:46 2021 -0700
โจ Creality3D V4.2.3 / Ender-2 Pro board (#23307)
commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date: Tue Dec 14 07:22:06 2021 +0100
โจ Configurations embed and retrieve (#21321, #23303)
commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Wed Dec 8 20:55:09 2021 +0200
๐ Fix and improve MAX31865 (#23215)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Sat Dec 11 03:38:03 2021 +0800
โจ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)
commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date: Tue Dec 7 02:53:51 2021 +0100
โจ X Twist Compensation & Calibration (#23238)
commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date: Sun Dec 5 22:41:39 2021 +0100
๐ง Chamber Fan index option (#23262)
commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Dec 3 12:48:48 2021 -0600
๐๏ธ Fix Maple HAL/STM32F1 PWM (#23211)
commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Dec 3 19:31:48 2021 +0100
๐๏ธ Rework STM32 timer frequency protection (#23187)
commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 30 15:04:05 2021 -0600
๐ Fix STM32 FastPWM
commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Nov 27 18:33:32 2021 -0600
๐จ Rename HAL timer elements
commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date: Wed Nov 24 08:52:18 2021 +1100
โจ EasyThreeD ET4000+ board and UI (#23080)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date: Tue Nov 23 21:24:24 2021 +0000
โจ MarkForged YX kinematics (#23163)
commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sun Nov 21 11:25:06 2021 -0800
โจ BigTreeTech Mini 12864 V1.0 (#23130)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 21:01:53 2021 +0100
โจ Fan tachometer support (#23086, #23180, #23199)
Co-Authored-By: Scott Lahteine <github@thinkyhead.com>
commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 16 08:54:30 2021 -0600
๐ง SOUND_MENU_ITEM for E3V2
commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:31:35 2021 -0500
๐ธ Expose sub-options for E3V2 Enhanced (#23099)
commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Wed Nov 17 09:33:42 2021 -0800
๐ Overridable probe-related pins (#23107)
commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Wed Nov 10 23:56:10 2021 +0800
โจ Support for BIQU B1-SE-Plus strain gauge probe (#23101)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 23:47:52 2021 -0600
๐จ Configurable firmware bin filename
Configuration.h > FIRMWARE_BIN
commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 20:59:28 2021 -0600
๐จ Ignore more generated files
commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 01:46:51 2021 -0600
๐ง Sanity check MMU2_MENUS
commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date: Fri Dec 24 06:57:20 2021 +0100
๐ Fix Robin Nano v3 filament runout pins (#23344)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date: Thu Dec 23 10:47:52 2021 +0100
๐ธ Show mm'ss during first hour (#23335)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Dec 15 07:51:19 2021 +0700
๐ธ Change "SD" to "Media" or "SD/FD" (#23297)
commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 13:48:38 2021 +1300
๐ Fix Chitu Z_STOP_PIN (#23330)
commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Dec 23 07:49:15 2021 +0100
๐ฉน Fix settings G21 report (#23338)
commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Dec 21 01:26:31 2021 -0600
๐๏ธ FAST_PWM_FAN default 1KHz base freq. (#23326)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 19:25:28 2021 +1300
๐ Fix LCD_BED_LEVELING compile (#23298)
commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date: Mon Dec 20 09:44:43 2021 +0100
๐งโ๐ป Option allowing > 127 Neopixels (#23322)
commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:33:49 2021 -0500
๐จ Update SKR V2 pins
commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Dec 14 01:47:57 2021 +0100
๐ธ Use M600 for disabled MMU (#21865)
commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Tue Dec 14 01:41:21 2021 +0100
๐ Fix TFT_COLOR_UI Release Media issue (#23123)
commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Sat Dec 18 01:31:10 2021 +0200
๐ง Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)
commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 18 17:38:29 2021 -0600
๐ Fix a config comment
commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:18:24 2021 +1300
โจ M115 flag EXTENDED_M20 (#22941)
commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:13:34 2021 +1300
โ๏ธ Clean up duplicate defs (#23182)
commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Tue Dec 14 07:11:52 2021 +0700
๐ฉน Init fan speed at boot (#23181)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 13 16:15:46 2021 -0600
๐ง Fix unknown board test
commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Dec 12 16:16:40 2021 -0600
๐ฉน SD abort requires open file
See #22566
commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 12 11:06:45 2021 +1300
๐ Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)
commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date: Wed Dec 8 23:18:04 2021 -0800
Fix Endstops::report_states (#23280)
Fix regression 4d45fdf0eb
commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Dec 8 18:36:08 2021 -0600
๐จ Misc. probe / endstop cleanup
commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Thu Dec 9 03:37:45 2021 +0800
๐ Fix MKS LVGL UI retraction (#23267)
commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 02:15:31 2021 +0700
๐ฉน Coerce pin_t in set_pwm_duty macros (#23273)
commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date: Wed Dec 8 11:10:37 2021 -0800
๐ Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 01:57:50 2021 +0700
๐ธ Onboard SD for SKR 2.0 / SKR PRO (#23274)
commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Dec 8 12:40:23 2021 -0600
๐จ Rename MAX31865 elements
commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 6 20:18:50 2021 -0600
โ๏ธ MAX31856 => MAX31865
commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Dec 6 15:52:18 2021 -0600
๐ฉน Fix non-PWM cutter compile (#23169)
commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Dec 6 21:40:18 2021 +0000
๐ Fix TWIBus Wire.begin call (#23183)
commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date: Sun Dec 5 22:18:02 2021 +0000
๐ HAL_reboot for native HAL (#23246)
commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date: Sun Dec 5 23:16:23 2021 +0100
๐ Fix env:chitu_f103 (#23225)
commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Dec 6 10:42:56 2021 +1300
๐ More Longer3D LKx Pro serial tests (#23260)
commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Sat Dec 4 23:44:10 2021 +0000
โจ M3426 to read i2c MCP3426 ADC (#23184)
commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Dec 4 17:17:10 2021 -0600
๐ง Cutter pins for SKR 2.0
commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 5 05:14:19 2021 +0700
๐ธ Park nozzle on "loud kill" (#23172)
commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 5 11:10:29 2021 +1300
โจ BigTree SKR 2 with F429 (#23177)
commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sat Dec 4 09:48:54 2021 +1300
๐ Fix TIMER_TONE for ZM3E4 (#23212)
commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date: Tue Nov 30 21:46:48 2021 +0100
๐ฉน Assume 4K EEPROM for RUMBA32 BTT (#23205)
commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 30 13:03:31 2021 -0600
๐ Fix STM32 FastPWM
commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 27 14:59:32 2021 -0800
โ๏ธ Fix Unicode (#23186)
commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date: Sat Nov 27 13:54:39 2021 -0800
๐ฉน Handle nullptr in CardReader::printLongPath (#23197)
commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date: Sat Nov 27 17:58:05 2021 -0500
๐ฉน UM2 extruder cooling fan on PJ6 (#23194)
commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date: Sun Nov 28 03:26:53 2021 +0800
โจ FYSETC Spider v2.2 (#23208)
commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 22:33:33 2021 +0100
๐ฉน Fix include path (#23150)
commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 23 13:54:31 2021 -0800
๐ Biqu BX temporary framework workaround (#23131)
commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Nov 23 14:05:50 2021 -0600
๐ Fix STM32 set_pwm_duty (#23125)
commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Nov 21 20:13:01 2021 +0100
๐ Fix TFT backlight sleep/wake (#23153)
commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sat Nov 20 02:44:53 2021 +0100
โก๏ธ Reduce calls to set fan PWM (#23149)
commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Nov 17 13:01:44 2021 -0600
๐จ Misc formatting
commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 18 01:35:28 2021 +0800
๐ Init PROBE_ENABLE_PIN (#23133)
commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date: Wed Nov 17 12:09:01 2021 -0500
๐จ Fix misspelling (#23137)
commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date: Wed Nov 17 18:07:11 2021 +0100
๐๏ธ Planner::busy() (#23145)
commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 14:06:36 2021 -0600
๐ Fix fast PWM WGM code
Followup to #23102
commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 12:49:25 2021 -0600
๐จ Bring Makefile up to date
commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Tue Nov 16 19:32:43 2021 +0300
๐จ Ignore sim flashdrive file (#23129)
commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date: Tue Nov 16 16:24:53 2021 +0100
๐ Fix G33, Delta radii, reachable (#22795)
commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date: Mon Nov 15 07:46:34 2021 +0300
๐ธ LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)
commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 14 17:19:57 2021 -0600
๐ Fix SENSORLESS_HOMING for 6-axis
commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Mon Nov 15 00:15:07 2021 +0300
๐ธ Simplify touchscreen calibration for SimUI (#23124)
commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:55:20 2021 -0500
๐ธ Fix up E3V2 Enhanced (#23100)
commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 22 13:21:26 2021 -0500
๐จ Misc. issue review patches
commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Sun Nov 14 05:55:31 2021 -0600
โก๏ธ Controller Fan software PWM (etc.) (#23102)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Nov 12 21:26:19 2021 +0100
๐จ MPX ARM Mini pins cleanup (#23113)
commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Nov 12 12:14:28 2021 -0600
๐ [LCP1768] Init PWM in set_pwm_duty (#23110)
commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date: Fri Nov 12 15:57:24 2021 +0100
๐ฉน Fix RGB case light compile (#23108)
commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date: Wed Nov 10 23:58:20 2021 +0800
๐ Fix FYSETC Cheetah 2.0 pins for production (#23104)
commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <github@minims.fr>
Date: Sun Oct 10 01:10:21 2021 +0200
๐ฉน Adjust GTR 1.0 ST7920 display delay (#22904)
commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 00:57:30 2021 -0600
fix breaks in F() resolution
commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:35:31 2021 -0500
๐จ Port libsdl2_net required for macOS simulator
commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 9 08:30:02 2021 -0800
โก๏ธ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)
commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 7 01:11:51 2021 -0600
๐จ Misc. code cleanup
commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date: Sun Oct 3 06:12:51 2021 +0300
โจ WYH L12864 LCD (Alfawise Ex8) (#22863)
commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 6 23:09:15 2021 -0700
๐ธ Indicate Preheating for probe / leveling (#23088)
commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date: Sun Nov 7 07:16:18 2021 +0300
๐ฉน Fix M503 report (#23084)
commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date: Sun Nov 7 11:53:36 2021 +0800
๐ป Preliminary fix for Max31865 SPI (#22682)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date: Sun Nov 7 04:48:00 2021 +0100
๐ Fix JyersUI scrolling filename, etc. (#23082)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Nov 7 15:27:53 2021 +1300
๐ Fix DGUS Reloaded status message (#23090)
commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Nov 4 12:18:23 2021 -0500
๐ป Get/clear reset source earlier
Followup to #23075
commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <skruppy@onmars.eu>
Date: Thu Nov 4 18:11:57 2021 +0100
๐ Prevent AVR watchdogpile (#23075)
commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Nov 4 18:04:04 2021 +0100
๐ Fix TFT backlight [STM32] (#23062)
commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 4 18:54:38 2021 +0800
๐ Fix Octopus-Pro Max31865 / SPI (#23072)
commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Nov 4 17:28:42 2021 +0700
๐จ Fix IntelliSense / PIO conflicts (#23058)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Nov 4 14:04:06 2021 +1300
๐ 'STOP' auto-assign, some Chitu V9 pins (#22889)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:06:31 2021 -0500
๐จ Script 'mfprep' finds pending commits
commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:02:21 2021 -0500
๐จ Update git helper scripts
commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 2 01:28:00 2021 -0500
๐จ Support ABM in mf scripts
commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 23:15:29 2021 -0700
๐ Default NeoPixel pin for MKS Robin E3/E3D (#23060)
commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date: Tue Nov 2 01:47:16 2021 -0400
โ๏ธ Use pwm_set_duty over analogWrite to set PWM (#23048)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 22:43:40 2021 -0700
๐ง Endstop / DIAG homing conflict warning (#23050)
commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 21:23:54 2021 -0700
โจ Allow Low EJERK with LA, optional (#23054)
commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 20:23:24 2021 -0700
โจ Artillery Ruby (STM32F401RCT6) (#23029)
commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Nov 1 23:03:50 2021 +0000
๐ธ More flexible Probe Temperature Compensation (#23033)
commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:17:16 2021 -0500
๐ Tweak EXP comments
commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 23:43:19 2021 -0500
๐จ Help for GDB remote debugging
commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 22:43:02 2021 -0500
๐ฉน Fix linker error (transfer_port_index)
commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 04:16:37 2021 -0500
๐ Update Ender-3 V2 config path
MarlinFirmware/Configurations#600
commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 01:39:33 2021 -0500
๐จ Adjust Ender-3 V2 DWIN options
commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <aalku7@gmail.com>
Date: Sat Oct 30 07:17:20 2021 +0200
โจ Shutdown Host Action (#22908)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Oct 29 20:46:55 2021 -0500
โจ "Rutilea" ESP32 board (#22880)
commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 29 20:42:52 2021 -0500
๐ง Configuration version 02000903
commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:36:06 2021 -0500
๐จ Standard 'cooldown' method
commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 20:01:44 2021 -0500
๐จ Standard material presets behavior
commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:15:58 2021 -0500
๐จ Define HAS_PREHEAT conditional
commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Sat Oct 30 00:49:12 2021 +0200
๐ Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)
commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Oct 28 19:22:35 2021 -0500
๐ Fix EZBoard V2 board name
commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Thu Oct 28 03:26:05 2021 -0700
๐ Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 21:54:43 2021 -0500
๐จ Apply HAS_MULTI_HOTEND conditional
commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <zlopi.ru@gmail.com>
Date: Wed Oct 27 23:10:46 2021 +0300
๐ธ Scroll long filename on MKS TFT (#23031)
commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Oct 28 09:06:06 2021 +1300
๐ฉน Retain LCD pins with motor expansion (#23024)
commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <hibs@circuitco.de>
Date: Wed Oct 27 21:00:02 2021 +0100
๐ Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)
commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Wed Oct 27 21:58:32 2021 +0200
๐ Fix E3V2 (CrealityUI) position display (#23023)
Followup to #23005, #22778
commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 19:36:16 2021 -0500
๐ธ Tweaks to UBL G29 Q
commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <spam@bergermeier.info>
Date: Wed Oct 27 01:05:34 2021 +0200
๐ Fix AUTOTEMP bug (thermal runaway) (#23025)
Regression from 9823a37
commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Oct 25 06:33:40 2021 +0100
๐ Add USE_TEMP_EXT_COMPENSATION options (#23007)
commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Oct 24 23:33:27 2021 -0500
๐ง Fewer alerts about Z_SAFE_HOMING
commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Fri Oct 22 18:16:07 2021 +0200
๐ Fix SHOW_REMAINING_TIME option for JyersUI (#22999)
commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Fri Oct 22 08:52:31 2021 -0700
โจ BigTreeTech TFT35 SPI V1.0 (#22986)
commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Oct 19 06:05:23 2021 -0500
๐ฉน Fix pragma ignored for older GCC (#22978)
commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Oct 19 05:59:48 2021 -0500
๐จ Refactor MOSFET pins layout (#22983)
commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 19 05:52:41 2021 -0500
๐จ Pragma GCC cleanup
commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <jason.inet@gmail.com>
Date: Mon Oct 18 01:11:16 2021 -0700
๐ Fix max chamber fan speed (#22977)
commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Oct 18 00:57:54 2021 -0700
๐ Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)
commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Oct 18 20:54:20 2021 +1300
๐ Fix MMU1 compile (#22965)
commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Oct 18 02:40:47 2021 -0500
๐จ Suppress type warning (#22976)
commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 22:10:08 2021 -0500
๐จ Add MKS UI goto_previous_ui
commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 20:24:41 2021 -0500
๐ธ Tweak MKS UI G-code console
commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 18:11:16 2021 -0500
๐จ Fix up MKS UI defines
commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 15 00:24:08 2021 -0500
๐จ Refactor Host Actions as singleton
commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Fri Oct 15 14:38:03 2021 +1300
๐ง Add, update TFT sanity checks (#22928)
commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 23:19:05 2021 -0400
โก๏ธ Formbot ST7920 delays, intentional X2 pins (#22915)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <svetotled@gmail.com>
Date: Wed Oct 13 05:45:00 2021 +0300
๐จ Update MKS UI for no bed, extruder (#22938)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 19:40:56 2021 -0400
๐ Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)
commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Oct 11 23:42:29 2021 +0100
โจ M261 S I2C output format (#22890)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Oct 10 01:05:24 2021 +0200
๐ Queue string followup (#22900)
commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date: Sat Oct 9 15:09:50 2021 -0700
๐ LCD string followup (#22892)
commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:19:28 2021 -0500
๐ Followup to F() in config_line
Followup to 1dafd1887e
commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Mon Oct 4 19:50:14 2021 -0500
๐ ExtUI F() followups
Followup to 12b5d997a2
commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 20:15:52 2021 -0500
๐จ Apply F() to kill / sendinfoscreen
commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 19:28:29 2021 -0500
๐จ Apply F() to MKS UI errors, assets
commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:46:42 2021 -0500
๐จ Apply F() to various reports
commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:40:01 2021 -0500
๐จ Apply F() to G-code report header
commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 23:52:41 2021 -0500
๐จ Apply F() to UTF-8/MMU2 string put
commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 22:11:48 2021 -0500
๐จ Apply F() to some ExtUI functions
commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:55:08 2021 -0500
๐จ Apply F() to Host Actions strings
commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 17:05:11 2021 -0500
๐จ Apply F() to status message
commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:03:07 2021 -0500
๐จ Apply F() to serial macros
commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 21:11:31 2021 -0500
๐จ Apply F() to G-code suite and queue
commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:43:52 2021 -0500
๐จ Apply F() to G-code subcommands
commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:22:37 2021 -0500
๐จ Update F string declarations
commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Oct 4 00:24:41 2021 -0500
๐จ Axis name string interpolation, with examples (#22879)
commit ecb08b15bed770972a263abb600207a0db8791d1
Merge: 798d12c2af 854ce63358
Author: Sergey <sergey@terentiev.me>
Date: Wed Dec 22 11:58:28 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 19 05:33:21 2021 +0700
๐ Fix loud_kill heater disable (#23314)
commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date: Tue Nov 23 22:30:13 2021 +0100
๐ Fix homing current for extra axes (#23152)
Followup to #19112
commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Sat Oct 9 19:13:19 2021 -0400
๐ Fix IDEX Duplication Mode Positioning (#22914)
Fixing #22538
commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Nov 24 04:19:32 2021 +0700
๐ Fix serial_data_available (#23160)
3 years ago
|
|
|
kill(F("Driver error"));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
template<typename TMC>
|
|
|
|
void report_driver_otpw(TMC &st) {
|
|
|
|
char timestamp[14];
|
|
|
|
duration_t elapsed = print_job_timer.duration();
|
|
|
|
const bool has_days = (elapsed.value > 60*60*24L);
|
|
|
|
(void)elapsed.toDigital(timestamp, has_days);
|
|
|
|
SERIAL_EOL();
|
|
|
|
SERIAL_ECHO(timestamp);
|
|
|
|
SERIAL_ECHOPGM(": ");
|
|
|
|
st.printLabel();
|
|
|
|
SERIAL_ECHOLNPGM(" driver overtemperature warning! (", st.getMilliamps(), "mA)");
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename TMC>
|
|
|
|
void report_polled_driver_data(TMC &st, const TMC_driver_data &data) {
|
|
|
|
const uint32_t pwm_scale = get_pwm_scale(st);
|
|
|
|
st.printLabel();
|
|
|
|
SERIAL_CHAR(':'); SERIAL_ECHO(pwm_scale);
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
#if HAS_TMCX1X0 || HAS_TMC220x
|
|
|
|
SERIAL_CHAR('/'); SERIAL_ECHO(data.cs_actual);
|
|
|
|
#endif
|
|
|
|
#if HAS_STALLGUARD
|
|
|
|
SERIAL_CHAR('/');
|
|
|
|
if (data.sg_result_reasonable)
|
|
|
|
SERIAL_ECHO(data.sg_result);
|
|
|
|
else
|
|
|
|
SERIAL_CHAR('-');
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
SERIAL_CHAR('|');
|
|
|
|
if (st.error_count) SERIAL_CHAR('E'); // Error
|
|
|
|
if (data.is_ot) SERIAL_CHAR('O'); // Over-temperature
|
|
|
|
if (data.is_otpw) SERIAL_CHAR('W'); // over-temperature pre-Warning
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
if (data.is_stall) SERIAL_CHAR('G'); // stallGuard
|
|
|
|
if (data.is_stealth) SERIAL_CHAR('T'); // stealthChop
|
|
|
|
if (data.is_standstill) SERIAL_CHAR('I'); // standstIll
|
|
|
|
#endif
|
|
|
|
if (st.flag_otpw) SERIAL_CHAR('F'); // otpw Flag
|
|
|
|
SERIAL_CHAR('|');
|
|
|
|
if (st.otpw_count > 0) SERIAL_ECHO(st.otpw_count);
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
}
|
|
|
|
|
|
|
|
#if CURRENT_STEP_DOWN > 0
|
|
|
|
|
|
|
|
template<typename TMC>
|
|
|
|
void step_current_down(TMC &st) {
|
|
|
|
if (st.isEnabled()) {
|
|
|
|
const uint16_t I_rms = st.getMilliamps() - (CURRENT_STEP_DOWN);
|
|
|
|
if (I_rms > 50) {
|
|
|
|
st.rms_current(I_rms);
|
|
|
|
#if ENABLED(REPORT_CURRENT_CHANGE)
|
|
|
|
st.printLabel();
|
|
|
|
SERIAL_ECHOLNPGM(" current decreased to ", I_rms);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define step_current_down(...)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
template<typename TMC>
|
|
|
|
bool monitor_tmc_driver(TMC &st, const bool need_update_error_counters, const bool need_debug_reporting) {
|
|
|
|
TMC_driver_data data = get_driver_data(st);
|
|
|
|
if (data.drv_status == 0xFFFFFFFF || data.drv_status == 0x0) return false;
|
|
|
|
|
|
|
|
bool should_step_down = false;
|
|
|
|
|
|
|
|
if (need_update_error_counters) {
|
|
|
|
if (data.is_ot | data.is_s2g) st.error_count++;
|
|
|
|
else if (st.error_count > 0) st.error_count--;
|
|
|
|
|
|
|
|
#if ENABLED(STOP_ON_ERROR)
|
|
|
|
if (st.error_count >= 10) {
|
|
|
|
SERIAL_EOL();
|
|
|
|
st.printLabel();
|
|
|
|
report_driver_error(data);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Report if a warning was triggered
|
|
|
|
if (data.is_otpw && st.otpw_count == 0)
|
|
|
|
report_driver_otpw(st);
|
|
|
|
|
|
|
|
#if CURRENT_STEP_DOWN > 0
|
|
|
|
// Decrease current if is_otpw is true and driver is enabled and there's been more than 4 warnings
|
|
|
|
if (data.is_otpw && st.otpw_count > 4 && st.isEnabled())
|
|
|
|
should_step_down = true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (data.is_otpw) {
|
|
|
|
st.otpw_count++;
|
|
|
|
st.flag_otpw = true;
|
|
|
|
}
|
|
|
|
else if (st.otpw_count > 0) st.otpw_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
if (need_debug_reporting) report_polled_driver_data(st, data);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return should_step_down;
|
|
|
|
}
|
|
|
|
|
|
|
|
void monitor_tmc_drivers() {
|
|
|
|
const millis_t ms = millis();
|
|
|
|
|
|
|
|
// Poll TMC drivers at the configured interval
|
|
|
|
static millis_t next_poll = 0;
|
|
|
|
const bool need_update_error_counters = ELAPSED(ms, next_poll);
|
|
|
|
if (need_update_error_counters) next_poll = ms + MONITOR_DRIVER_STATUS_INTERVAL_MS;
|
|
|
|
|
|
|
|
// Also poll at intervals for debugging
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
static millis_t next_debug_reporting = 0;
|
|
|
|
const bool need_debug_reporting = report_tmc_status_interval && ELAPSED(ms, next_debug_reporting);
|
|
|
|
if (need_debug_reporting) next_debug_reporting = ms + report_tmc_status_interval;
|
|
|
|
#else
|
|
|
|
constexpr bool need_debug_reporting = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (need_update_error_counters || need_debug_reporting) {
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(X) || AXIS_IS_TMC(X2)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
#if AXIS_IS_TMC(X)
|
|
|
|
if (monitor_tmc_driver(stepperX, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
|
|
|
if (monitor_tmc_driver(stepperX2, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
if (result) {
|
|
|
|
#if AXIS_IS_TMC(X)
|
|
|
|
step_current_down(stepperX);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
|
|
|
step_current_down(stepperX2);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(Y) || AXIS_IS_TMC(Y2)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
#if AXIS_IS_TMC(Y)
|
|
|
|
if (monitor_tmc_driver(stepperY, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
|
|
|
if (monitor_tmc_driver(stepperY2, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
if (result) {
|
|
|
|
#if AXIS_IS_TMC(Y)
|
|
|
|
step_current_down(stepperY);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
|
|
|
step_current_down(stepperY2);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(Z) || AXIS_IS_TMC(Z2) || AXIS_IS_TMC(Z3) || AXIS_IS_TMC(Z4)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
#if AXIS_IS_TMC(Z)
|
|
|
|
if (monitor_tmc_driver(stepperZ, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
|
|
|
if (monitor_tmc_driver(stepperZ2, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
|
|
|
if (monitor_tmc_driver(stepperZ3, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z4)
|
|
|
|
if (monitor_tmc_driver(stepperZ4, need_update_error_counters, need_debug_reporting)) result = true;
|
|
|
|
#endif
|
|
|
|
if (result) {
|
|
|
|
#if AXIS_IS_TMC(Z)
|
|
|
|
step_current_down(stepperZ);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
|
|
|
step_current_down(stepperZ2);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
|
|
|
step_current_down(stepperZ3);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z4)
|
|
|
|
step_current_down(stepperZ4);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(I)
|
|
|
|
if (monitor_tmc_driver(stepperI, need_update_error_counters, need_debug_reporting))
|
|
|
|
step_current_down(stepperI);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(J)
|
|
|
|
if (monitor_tmc_driver(stepperJ, need_update_error_counters, need_debug_reporting))
|
|
|
|
step_current_down(stepperJ);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(K)
|
|
|
|
if (monitor_tmc_driver(stepperK, need_update_error_counters, need_debug_reporting))
|
|
|
|
step_current_down(stepperK);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(E0)
|
|
|
|
(void)monitor_tmc_driver(stepperE0, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E1)
|
|
|
|
(void)monitor_tmc_driver(stepperE1, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E2)
|
|
|
|
(void)monitor_tmc_driver(stepperE2, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E3)
|
|
|
|
(void)monitor_tmc_driver(stepperE3, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E4)
|
|
|
|
(void)monitor_tmc_driver(stepperE4, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E5)
|
|
|
|
(void)monitor_tmc_driver(stepperE5, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E6)
|
|
|
|
(void)monitor_tmc_driver(stepperE6, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E7)
|
|
|
|
(void)monitor_tmc_driver(stepperE7, need_update_error_counters, need_debug_reporting);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (TERN0(TMC_DEBUG, need_debug_reporting)) SERIAL_EOL();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MONITOR_DRIVER_STATUS
|
|
|
|
|
|
|
|
#if ENABLED(TMC_DEBUG)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* M122 [S<0|1>] [Pnnn] Enable periodic status reports
|
|
|
|
*/
|
|
|
|
#if ENABLED(MONITOR_DRIVER_STATUS)
|
|
|
|
void tmc_set_report_interval(const uint16_t update_interval) {
|
|
|
|
if ((report_tmc_status_interval = update_interval))
|
|
|
|
SERIAL_ECHOLNPGM("axis:pwm_scale"
|
|
|
|
#if HAS_STEALTHCHOP
|
|
|
|
"/curr_scale"
|
|
|
|
#endif
|
|
|
|
#if HAS_STALLGUARD
|
|
|
|
"/mech_load"
|
|
|
|
#endif
|
|
|
|
"|flags|warncount"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum TMC_debug_enum : char {
|
|
|
|
TMC_CODES,
|
|
|
|
TMC_UART_ADDR,
|
|
|
|
TMC_ENABLED,
|
|
|
|
TMC_CURRENT,
|
|
|
|
TMC_RMS_CURRENT,
|
|
|
|
TMC_MAX_CURRENT,
|
|
|
|
TMC_IRUN,
|
|
|
|
TMC_IHOLD,
|
|
|
|
TMC_GLOBAL_SCALER,
|
|
|
|
TMC_CS_ACTUAL,
|
|
|
|
TMC_PWM_SCALE,
|
|
|
|
TMC_PWM_SCALE_SUM,
|
|
|
|
TMC_PWM_SCALE_AUTO,
|
|
|
|
TMC_PWM_OFS_AUTO,
|
|
|
|
TMC_PWM_GRAD_AUTO,
|
|
|
|
TMC_VSENSE,
|
|
|
|
TMC_STEALTHCHOP,
|
|
|
|
TMC_MICROSTEPS,
|
|
|
|
TMC_TSTEP,
|
|
|
|
TMC_TPWMTHRS,
|
|
|
|
TMC_TPWMTHRS_MMS,
|
|
|
|
TMC_OTPW,
|
|
|
|
TMC_OTPW_TRIGGERED,
|
|
|
|
TMC_TOFF,
|
|
|
|
TMC_TBL,
|
|
|
|
TMC_HEND,
|
|
|
|
TMC_HSTRT,
|
|
|
|
TMC_SGT,
|
|
|
|
TMC_MSCNT,
|
|
|
|
TMC_INTERPOLATE
|
|
|
|
};
|
|
|
|
enum TMC_drv_status_enum : char {
|
|
|
|
TMC_DRV_CODES,
|
|
|
|
TMC_STST,
|
|
|
|
TMC_OLB,
|
|
|
|
TMC_OLA,
|
|
|
|
TMC_S2GB,
|
|
|
|
TMC_S2GA,
|
|
|
|
TMC_DRV_OTPW,
|
|
|
|
TMC_OT,
|
|
|
|
TMC_STALLGUARD,
|
|
|
|
TMC_DRV_CS_ACTUAL,
|
|
|
|
TMC_FSACTIVE,
|
|
|
|
TMC_SG_RESULT,
|
|
|
|
TMC_DRV_STATUS_HEX,
|
|
|
|
TMC_T157,
|
|
|
|
TMC_T150,
|
|
|
|
TMC_T143,
|
|
|
|
TMC_T120,
|
|
|
|
TMC_STEALTH,
|
|
|
|
TMC_S2VSB,
|
|
|
|
TMC_S2VSA
|
|
|
|
};
|
|
|
|
enum TMC_get_registers_enum : char {
|
|
|
|
TMC_AXIS_CODES,
|
|
|
|
TMC_GET_GCONF,
|
|
|
|
TMC_GET_IHOLD_IRUN,
|
|
|
|
TMC_GET_GSTAT,
|
|
|
|
TMC_GET_IOIN,
|
|
|
|
TMC_GET_TPOWERDOWN,
|
|
|
|
TMC_GET_TSTEP,
|
|
|
|
TMC_GET_TPWMTHRS,
|
|
|
|
TMC_GET_TCOOLTHRS,
|
|
|
|
TMC_GET_THIGH,
|
|
|
|
TMC_GET_CHOPCONF,
|
|
|
|
TMC_GET_COOLCONF,
|
|
|
|
TMC_GET_PWMCONF,
|
|
|
|
TMC_GET_PWM_SCALE,
|
|
|
|
TMC_GET_DRV_STATUS,
|
|
|
|
TMC_GET_DRVCONF,
|
|
|
|
TMC_GET_DRVCTRL,
|
|
|
|
TMC_GET_DRVSTATUS,
|
|
|
|
TMC_GET_SGCSCONF,
|
|
|
|
TMC_GET_SMARTEN
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class TMC>
|
Squashed commit of the following:
commit 4b9fce2e8588f5dea0658e93fa0260830a851874
Merge: ecb08b15be e17d710c5c
Author: Sergey <sergey@terentiev.me>
Date: Mon Dec 27 16:47:22 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit e17d710c5c4c96e069f64854e3fcdb77abcf90e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 22:13:20 2021 -0600
๐ Marlin 2.0.9.3
commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Dec 25 19:41:01 2021 -0800
๐ Fix MKS Robin E3 NeoPixel pin default (#23350)
commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date: Sun Dec 26 10:12:20 2021 +0800
๐ Fix open for bin rename (#23351)
commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 03:27:45 2021 -0600
๐ง Move MOTHERBOARD closer to top
commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date: Sat Dec 25 05:57:07 2021 -0300
โจ Per-axis TMC hold multiplier (#23345)
commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Fri Dec 24 14:03:32 2021 +0800
โจ MKS TinyBee board support (#23340)
Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>
commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 23 15:19:39 2021 +0700
๐ง Group FAST_PWM_FAN.options (#23331)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Dec 21 23:09:55 2021 -0500
โจ BLTouch High Speed mode runtime configuration (#22916, #23337)
Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 15:44:04 2021 +1300
โจ Option to reset EEPROM on first run (#23276)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date: Sat Dec 18 18:58:46 2021 -0700
โจ Creality3D V4.2.3 / Ender-2 Pro board (#23307)
commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date: Tue Dec 14 07:22:06 2021 +0100
โจ Configurations embed and retrieve (#21321, #23303)
commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Wed Dec 8 20:55:09 2021 +0200
๐ Fix and improve MAX31865 (#23215)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Sat Dec 11 03:38:03 2021 +0800
โจ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)
commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date: Tue Dec 7 02:53:51 2021 +0100
โจ X Twist Compensation & Calibration (#23238)
commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date: Sun Dec 5 22:41:39 2021 +0100
๐ง Chamber Fan index option (#23262)
commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Dec 3 12:48:48 2021 -0600
๐๏ธ Fix Maple HAL/STM32F1 PWM (#23211)
commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Dec 3 19:31:48 2021 +0100
๐๏ธ Rework STM32 timer frequency protection (#23187)
commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 30 15:04:05 2021 -0600
๐ Fix STM32 FastPWM
commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Nov 27 18:33:32 2021 -0600
๐จ Rename HAL timer elements
commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date: Wed Nov 24 08:52:18 2021 +1100
โจ EasyThreeD ET4000+ board and UI (#23080)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date: Tue Nov 23 21:24:24 2021 +0000
โจ MarkForged YX kinematics (#23163)
commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sun Nov 21 11:25:06 2021 -0800
โจ BigTreeTech Mini 12864 V1.0 (#23130)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 21:01:53 2021 +0100
โจ Fan tachometer support (#23086, #23180, #23199)
Co-Authored-By: Scott Lahteine <github@thinkyhead.com>
commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 16 08:54:30 2021 -0600
๐ง SOUND_MENU_ITEM for E3V2
commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:31:35 2021 -0500
๐ธ Expose sub-options for E3V2 Enhanced (#23099)
commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Wed Nov 17 09:33:42 2021 -0800
๐ Overridable probe-related pins (#23107)
commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Wed Nov 10 23:56:10 2021 +0800
โจ Support for BIQU B1-SE-Plus strain gauge probe (#23101)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 23:47:52 2021 -0600
๐จ Configurable firmware bin filename
Configuration.h > FIRMWARE_BIN
commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 20:59:28 2021 -0600
๐จ Ignore more generated files
commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 01:46:51 2021 -0600
๐ง Sanity check MMU2_MENUS
commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date: Fri Dec 24 06:57:20 2021 +0100
๐ Fix Robin Nano v3 filament runout pins (#23344)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date: Thu Dec 23 10:47:52 2021 +0100
๐ธ Show mm'ss during first hour (#23335)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Dec 15 07:51:19 2021 +0700
๐ธ Change "SD" to "Media" or "SD/FD" (#23297)
commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 13:48:38 2021 +1300
๐ Fix Chitu Z_STOP_PIN (#23330)
commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Dec 23 07:49:15 2021 +0100
๐ฉน Fix settings G21 report (#23338)
commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Dec 21 01:26:31 2021 -0600
๐๏ธ FAST_PWM_FAN default 1KHz base freq. (#23326)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 19:25:28 2021 +1300
๐ Fix LCD_BED_LEVELING compile (#23298)
commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date: Mon Dec 20 09:44:43 2021 +0100
๐งโ๐ป Option allowing > 127 Neopixels (#23322)
commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:33:49 2021 -0500
๐จ Update SKR V2 pins
commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Dec 14 01:47:57 2021 +0100
๐ธ Use M600 for disabled MMU (#21865)
commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Tue Dec 14 01:41:21 2021 +0100
๐ Fix TFT_COLOR_UI Release Media issue (#23123)
commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Sat Dec 18 01:31:10 2021 +0200
๐ง Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)
commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 18 17:38:29 2021 -0600
๐ Fix a config comment
commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:18:24 2021 +1300
โจ M115 flag EXTENDED_M20 (#22941)
commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:13:34 2021 +1300
โ๏ธ Clean up duplicate defs (#23182)
commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Tue Dec 14 07:11:52 2021 +0700
๐ฉน Init fan speed at boot (#23181)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 13 16:15:46 2021 -0600
๐ง Fix unknown board test
commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Dec 12 16:16:40 2021 -0600
๐ฉน SD abort requires open file
See #22566
commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 12 11:06:45 2021 +1300
๐ Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)
commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date: Wed Dec 8 23:18:04 2021 -0800
Fix Endstops::report_states (#23280)
Fix regression 4d45fdf0eb
commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Dec 8 18:36:08 2021 -0600
๐จ Misc. probe / endstop cleanup
commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Thu Dec 9 03:37:45 2021 +0800
๐ Fix MKS LVGL UI retraction (#23267)
commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 02:15:31 2021 +0700
๐ฉน Coerce pin_t in set_pwm_duty macros (#23273)
commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date: Wed Dec 8 11:10:37 2021 -0800
๐ Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 01:57:50 2021 +0700
๐ธ Onboard SD for SKR 2.0 / SKR PRO (#23274)
commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Dec 8 12:40:23 2021 -0600
๐จ Rename MAX31865 elements
commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 6 20:18:50 2021 -0600
โ๏ธ MAX31856 => MAX31865
commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Dec 6 15:52:18 2021 -0600
๐ฉน Fix non-PWM cutter compile (#23169)
commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Dec 6 21:40:18 2021 +0000
๐ Fix TWIBus Wire.begin call (#23183)
commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date: Sun Dec 5 22:18:02 2021 +0000
๐ HAL_reboot for native HAL (#23246)
commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date: Sun Dec 5 23:16:23 2021 +0100
๐ Fix env:chitu_f103 (#23225)
commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Dec 6 10:42:56 2021 +1300
๐ More Longer3D LKx Pro serial tests (#23260)
commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Sat Dec 4 23:44:10 2021 +0000
โจ M3426 to read i2c MCP3426 ADC (#23184)
commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Dec 4 17:17:10 2021 -0600
๐ง Cutter pins for SKR 2.0
commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 5 05:14:19 2021 +0700
๐ธ Park nozzle on "loud kill" (#23172)
commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 5 11:10:29 2021 +1300
โจ BigTree SKR 2 with F429 (#23177)
commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sat Dec 4 09:48:54 2021 +1300
๐ Fix TIMER_TONE for ZM3E4 (#23212)
commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date: Tue Nov 30 21:46:48 2021 +0100
๐ฉน Assume 4K EEPROM for RUMBA32 BTT (#23205)
commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 30 13:03:31 2021 -0600
๐ Fix STM32 FastPWM
commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 27 14:59:32 2021 -0800
โ๏ธ Fix Unicode (#23186)
commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date: Sat Nov 27 13:54:39 2021 -0800
๐ฉน Handle nullptr in CardReader::printLongPath (#23197)
commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date: Sat Nov 27 17:58:05 2021 -0500
๐ฉน UM2 extruder cooling fan on PJ6 (#23194)
commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date: Sun Nov 28 03:26:53 2021 +0800
โจ FYSETC Spider v2.2 (#23208)
commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 22:33:33 2021 +0100
๐ฉน Fix include path (#23150)
commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 23 13:54:31 2021 -0800
๐ Biqu BX temporary framework workaround (#23131)
commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Nov 23 14:05:50 2021 -0600
๐ Fix STM32 set_pwm_duty (#23125)
commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Nov 21 20:13:01 2021 +0100
๐ Fix TFT backlight sleep/wake (#23153)
commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sat Nov 20 02:44:53 2021 +0100
โก๏ธ Reduce calls to set fan PWM (#23149)
commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Nov 17 13:01:44 2021 -0600
๐จ Misc formatting
commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 18 01:35:28 2021 +0800
๐ Init PROBE_ENABLE_PIN (#23133)
commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date: Wed Nov 17 12:09:01 2021 -0500
๐จ Fix misspelling (#23137)
commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date: Wed Nov 17 18:07:11 2021 +0100
๐๏ธ Planner::busy() (#23145)
commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 14:06:36 2021 -0600
๐ Fix fast PWM WGM code
Followup to #23102
commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 12:49:25 2021 -0600
๐จ Bring Makefile up to date
commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Tue Nov 16 19:32:43 2021 +0300
๐จ Ignore sim flashdrive file (#23129)
commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date: Tue Nov 16 16:24:53 2021 +0100
๐ Fix G33, Delta radii, reachable (#22795)
commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date: Mon Nov 15 07:46:34 2021 +0300
๐ธ LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)
commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 14 17:19:57 2021 -0600
๐ Fix SENSORLESS_HOMING for 6-axis
commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Mon Nov 15 00:15:07 2021 +0300
๐ธ Simplify touchscreen calibration for SimUI (#23124)
commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:55:20 2021 -0500
๐ธ Fix up E3V2 Enhanced (#23100)
commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 22 13:21:26 2021 -0500
๐จ Misc. issue review patches
commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Sun Nov 14 05:55:31 2021 -0600
โก๏ธ Controller Fan software PWM (etc.) (#23102)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Nov 12 21:26:19 2021 +0100
๐จ MPX ARM Mini pins cleanup (#23113)
commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Nov 12 12:14:28 2021 -0600
๐ [LCP1768] Init PWM in set_pwm_duty (#23110)
commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date: Fri Nov 12 15:57:24 2021 +0100
๐ฉน Fix RGB case light compile (#23108)
commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date: Wed Nov 10 23:58:20 2021 +0800
๐ Fix FYSETC Cheetah 2.0 pins for production (#23104)
commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <github@minims.fr>
Date: Sun Oct 10 01:10:21 2021 +0200
๐ฉน Adjust GTR 1.0 ST7920 display delay (#22904)
commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 00:57:30 2021 -0600
fix breaks in F() resolution
commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:35:31 2021 -0500
๐จ Port libsdl2_net required for macOS simulator
commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 9 08:30:02 2021 -0800
โก๏ธ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)
commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 7 01:11:51 2021 -0600
๐จ Misc. code cleanup
commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date: Sun Oct 3 06:12:51 2021 +0300
โจ WYH L12864 LCD (Alfawise Ex8) (#22863)
commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 6 23:09:15 2021 -0700
๐ธ Indicate Preheating for probe / leveling (#23088)
commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date: Sun Nov 7 07:16:18 2021 +0300
๐ฉน Fix M503 report (#23084)
commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date: Sun Nov 7 11:53:36 2021 +0800
๐ป Preliminary fix for Max31865 SPI (#22682)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date: Sun Nov 7 04:48:00 2021 +0100
๐ Fix JyersUI scrolling filename, etc. (#23082)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Nov 7 15:27:53 2021 +1300
๐ Fix DGUS Reloaded status message (#23090)
commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Nov 4 12:18:23 2021 -0500
๐ป Get/clear reset source earlier
Followup to #23075
commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <skruppy@onmars.eu>
Date: Thu Nov 4 18:11:57 2021 +0100
๐ Prevent AVR watchdogpile (#23075)
commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Nov 4 18:04:04 2021 +0100
๐ Fix TFT backlight [STM32] (#23062)
commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 4 18:54:38 2021 +0800
๐ Fix Octopus-Pro Max31865 / SPI (#23072)
commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Nov 4 17:28:42 2021 +0700
๐จ Fix IntelliSense / PIO conflicts (#23058)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Nov 4 14:04:06 2021 +1300
๐ 'STOP' auto-assign, some Chitu V9 pins (#22889)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:06:31 2021 -0500
๐จ Script 'mfprep' finds pending commits
commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:02:21 2021 -0500
๐จ Update git helper scripts
commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 2 01:28:00 2021 -0500
๐จ Support ABM in mf scripts
commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 23:15:29 2021 -0700
๐ Default NeoPixel pin for MKS Robin E3/E3D (#23060)
commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date: Tue Nov 2 01:47:16 2021 -0400
โ๏ธ Use pwm_set_duty over analogWrite to set PWM (#23048)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 22:43:40 2021 -0700
๐ง Endstop / DIAG homing conflict warning (#23050)
commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 21:23:54 2021 -0700
โจ Allow Low EJERK with LA, optional (#23054)
commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 20:23:24 2021 -0700
โจ Artillery Ruby (STM32F401RCT6) (#23029)
commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Nov 1 23:03:50 2021 +0000
๐ธ More flexible Probe Temperature Compensation (#23033)
commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:17:16 2021 -0500
๐ Tweak EXP comments
commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 23:43:19 2021 -0500
๐จ Help for GDB remote debugging
commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 22:43:02 2021 -0500
๐ฉน Fix linker error (transfer_port_index)
commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 04:16:37 2021 -0500
๐ Update Ender-3 V2 config path
MarlinFirmware/Configurations#600
commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 01:39:33 2021 -0500
๐จ Adjust Ender-3 V2 DWIN options
commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <aalku7@gmail.com>
Date: Sat Oct 30 07:17:20 2021 +0200
โจ Shutdown Host Action (#22908)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Oct 29 20:46:55 2021 -0500
โจ "Rutilea" ESP32 board (#22880)
commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 29 20:42:52 2021 -0500
๐ง Configuration version 02000903
commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:36:06 2021 -0500
๐จ Standard 'cooldown' method
commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 20:01:44 2021 -0500
๐จ Standard material presets behavior
commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:15:58 2021 -0500
๐จ Define HAS_PREHEAT conditional
commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Sat Oct 30 00:49:12 2021 +0200
๐ Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)
commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Oct 28 19:22:35 2021 -0500
๐ Fix EZBoard V2 board name
commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Thu Oct 28 03:26:05 2021 -0700
๐ Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 21:54:43 2021 -0500
๐จ Apply HAS_MULTI_HOTEND conditional
commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <zlopi.ru@gmail.com>
Date: Wed Oct 27 23:10:46 2021 +0300
๐ธ Scroll long filename on MKS TFT (#23031)
commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Oct 28 09:06:06 2021 +1300
๐ฉน Retain LCD pins with motor expansion (#23024)
commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <hibs@circuitco.de>
Date: Wed Oct 27 21:00:02 2021 +0100
๐ Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)
commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Wed Oct 27 21:58:32 2021 +0200
๐ Fix E3V2 (CrealityUI) position display (#23023)
Followup to #23005, #22778
commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 19:36:16 2021 -0500
๐ธ Tweaks to UBL G29 Q
commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <spam@bergermeier.info>
Date: Wed Oct 27 01:05:34 2021 +0200
๐ Fix AUTOTEMP bug (thermal runaway) (#23025)
Regression from 9823a37
commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Oct 25 06:33:40 2021 +0100
๐ Add USE_TEMP_EXT_COMPENSATION options (#23007)
commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Oct 24 23:33:27 2021 -0500
๐ง Fewer alerts about Z_SAFE_HOMING
commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Fri Oct 22 18:16:07 2021 +0200
๐ Fix SHOW_REMAINING_TIME option for JyersUI (#22999)
commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Fri Oct 22 08:52:31 2021 -0700
โจ BigTreeTech TFT35 SPI V1.0 (#22986)
commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Oct 19 06:05:23 2021 -0500
๐ฉน Fix pragma ignored for older GCC (#22978)
commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Oct 19 05:59:48 2021 -0500
๐จ Refactor MOSFET pins layout (#22983)
commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 19 05:52:41 2021 -0500
๐จ Pragma GCC cleanup
commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <jason.inet@gmail.com>
Date: Mon Oct 18 01:11:16 2021 -0700
๐ Fix max chamber fan speed (#22977)
commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Oct 18 00:57:54 2021 -0700
๐ Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)
commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Oct 18 20:54:20 2021 +1300
๐ Fix MMU1 compile (#22965)
commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Oct 18 02:40:47 2021 -0500
๐จ Suppress type warning (#22976)
commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 22:10:08 2021 -0500
๐จ Add MKS UI goto_previous_ui
commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 20:24:41 2021 -0500
๐ธ Tweak MKS UI G-code console
commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 18:11:16 2021 -0500
๐จ Fix up MKS UI defines
commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 15 00:24:08 2021 -0500
๐จ Refactor Host Actions as singleton
commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Fri Oct 15 14:38:03 2021 +1300
๐ง Add, update TFT sanity checks (#22928)
commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 23:19:05 2021 -0400
โก๏ธ Formbot ST7920 delays, intentional X2 pins (#22915)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <svetotled@gmail.com>
Date: Wed Oct 13 05:45:00 2021 +0300
๐จ Update MKS UI for no bed, extruder (#22938)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 19:40:56 2021 -0400
๐ Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)
commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Oct 11 23:42:29 2021 +0100
โจ M261 S I2C output format (#22890)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Oct 10 01:05:24 2021 +0200
๐ Queue string followup (#22900)
commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date: Sat Oct 9 15:09:50 2021 -0700
๐ LCD string followup (#22892)
commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:19:28 2021 -0500
๐ Followup to F() in config_line
Followup to 1dafd1887e
commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Mon Oct 4 19:50:14 2021 -0500
๐ ExtUI F() followups
Followup to 12b5d997a2
commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 20:15:52 2021 -0500
๐จ Apply F() to kill / sendinfoscreen
commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 19:28:29 2021 -0500
๐จ Apply F() to MKS UI errors, assets
commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:46:42 2021 -0500
๐จ Apply F() to various reports
commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:40:01 2021 -0500
๐จ Apply F() to G-code report header
commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 23:52:41 2021 -0500
๐จ Apply F() to UTF-8/MMU2 string put
commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 22:11:48 2021 -0500
๐จ Apply F() to some ExtUI functions
commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:55:08 2021 -0500
๐จ Apply F() to Host Actions strings
commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 17:05:11 2021 -0500
๐จ Apply F() to status message
commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:03:07 2021 -0500
๐จ Apply F() to serial macros
commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 21:11:31 2021 -0500
๐จ Apply F() to G-code suite and queue
commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:43:52 2021 -0500
๐จ Apply F() to G-code subcommands
commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:22:37 2021 -0500
๐จ Update F string declarations
commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Oct 4 00:24:41 2021 -0500
๐จ Axis name string interpolation, with examples (#22879)
commit ecb08b15bed770972a263abb600207a0db8791d1
Merge: 798d12c2af 854ce63358
Author: Sergey <sergey@terentiev.me>
Date: Wed Dec 22 11:58:28 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 19 05:33:21 2021 +0700
๐ Fix loud_kill heater disable (#23314)
commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date: Tue Nov 23 22:30:13 2021 +0100
๐ Fix homing current for extra axes (#23152)
Followup to #19112
commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Sat Oct 9 19:13:19 2021 -0400
๐ Fix IDEX Duplication Mode Positioning (#22914)
Fixing #22538
commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Nov 24 04:19:32 2021 +0700
๐ Fix serial_data_available (#23160)
3 years ago
|
|
|
static void print_vsense(TMC &st) { SERIAL_ECHOF(st.vsense() ? F("1=.18") : F("0=.325")); }
|
|
|
|
|
|
|
|
#if HAS_DRIVER(TMC2130) || HAS_DRIVER(TMC5130)
|
|
|
|
static void _tmc_status(TMC2130Stepper &st, const TMC_debug_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_PWM_SCALE: SERIAL_ECHO(st.PWM_SCALE()); break;
|
|
|
|
case TMC_SGT: SERIAL_ECHO(st.sgt()); break;
|
|
|
|
case TMC_STEALTHCHOP: serialprint_truefalse(st.en_pwm_mode()); break;
|
|
|
|
case TMC_INTERPOLATE: serialprint_truefalse(st.intpol()); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if HAS_TMCX1X0
|
|
|
|
static void _tmc_parse_drv_status(TMC2130Stepper &st, const TMC_drv_status_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_STALLGUARD: if (st.stallguard()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_SG_RESULT: SERIAL_ECHO(st.sg_result()); break;
|
|
|
|
case TMC_FSACTIVE: if (st.fsactive()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_DRV_CS_ACTUAL: SERIAL_ECHO(st.cs_actual()); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_DRIVER(TMC2160) || HAS_DRIVER(TMC5160)
|
|
|
|
template<char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
|
|
|
|
void print_vsense(TMCMarlin<TMC2160Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> &) { }
|
|
|
|
|
|
|
|
template<char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
|
|
|
|
void print_vsense(TMCMarlin<TMC5160Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> &) { }
|
|
|
|
|
|
|
|
static void _tmc_status(TMC2160Stepper &st, const TMC_debug_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_PWM_SCALE: SERIAL_ECHO(st.PWM_SCALE()); break;
|
|
|
|
case TMC_SGT: SERIAL_ECHO(st.sgt()); break;
|
|
|
|
case TMC_STEALTHCHOP: serialprint_truefalse(st.en_pwm_mode()); break;
|
|
|
|
case TMC_GLOBAL_SCALER:
|
|
|
|
{
|
|
|
|
uint16_t value = st.GLOBAL_SCALER();
|
|
|
|
SERIAL_ECHO(value ? value : 256);
|
|
|
|
SERIAL_ECHOPGM("/256");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TMC_INTERPOLATE: serialprint_truefalse(st.intpol()); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_TMC220x
|
|
|
|
static void _tmc_status(TMC2208Stepper &st, const TMC_debug_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_PWM_SCALE_SUM: SERIAL_ECHO(st.pwm_scale_sum()); break;
|
|
|
|
case TMC_PWM_SCALE_AUTO: SERIAL_ECHO(st.pwm_scale_auto()); break;
|
|
|
|
case TMC_PWM_OFS_AUTO: SERIAL_ECHO(st.pwm_ofs_auto()); break;
|
|
|
|
case TMC_PWM_GRAD_AUTO: SERIAL_ECHO(st.pwm_grad_auto()); break;
|
|
|
|
case TMC_STEALTHCHOP: serialprint_truefalse(st.stealth()); break;
|
|
|
|
case TMC_INTERPOLATE: serialprint_truefalse(st.intpol()); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAS_DRIVER(TMC2209)
|
|
|
|
template<char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
|
|
|
|
static void _tmc_status(TMCMarlin<TMC2209Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> &st, const TMC_debug_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_SGT: SERIAL_ECHO(st.SGTHRS()); break;
|
|
|
|
case TMC_UART_ADDR: SERIAL_ECHO(st.get_address()); break;
|
|
|
|
default:
|
|
|
|
TMC2208Stepper *parent = &st;
|
|
|
|
_tmc_status(*parent, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void _tmc_parse_drv_status(TMC2208Stepper &st, const TMC_drv_status_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_T157: if (st.t157()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_T150: if (st.t150()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_T143: if (st.t143()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_T120: if (st.t120()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_S2VSA: if (st.s2vsa()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_S2VSB: if (st.s2vsb()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_DRV_CS_ACTUAL: SERIAL_ECHO(st.cs_actual()); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAS_DRIVER(TMC2209)
|
|
|
|
static void _tmc_parse_drv_status(TMC2209Stepper &st, const TMC_drv_status_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_SG_RESULT: SERIAL_ECHO(st.SG_RESULT()); break;
|
|
|
|
default: _tmc_parse_drv_status(static_cast<TMC2208Stepper &>(st), i); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_DRIVER(TMC2660)
|
|
|
|
static void _tmc_parse_drv_status(TMC2660Stepper, const TMC_drv_status_enum) { }
|
|
|
|
static void _tmc_status(TMC2660Stepper &st, const TMC_debug_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_INTERPOLATE: serialprint_truefalse(st.intpol()); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
template <typename TMC>
|
|
|
|
static void tmc_status(TMC &st, const TMC_debug_enum i) {
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
switch (i) {
|
|
|
|
case TMC_CODES: st.printLabel(); break;
|
|
|
|
case TMC_ENABLED: serialprint_truefalse(st.isEnabled()); break;
|
|
|
|
case TMC_CURRENT: SERIAL_ECHO(st.getMilliamps()); break;
|
|
|
|
case TMC_RMS_CURRENT: SERIAL_ECHO(st.rms_current()); break;
|
|
|
|
case TMC_MAX_CURRENT: SERIAL_PRINT((float)st.rms_current() * 1.41, 0); break;
|
|
|
|
case TMC_IRUN:
|
|
|
|
SERIAL_ECHO(st.irun());
|
|
|
|
SERIAL_ECHOPGM("/31");
|
|
|
|
break;
|
|
|
|
case TMC_IHOLD:
|
|
|
|
SERIAL_ECHO(st.ihold());
|
|
|
|
SERIAL_ECHOPGM("/31");
|
|
|
|
break;
|
|
|
|
case TMC_CS_ACTUAL:
|
|
|
|
SERIAL_ECHO(st.cs_actual());
|
|
|
|
SERIAL_ECHOPGM("/31");
|
|
|
|
break;
|
|
|
|
case TMC_VSENSE: print_vsense(st); break;
|
|
|
|
case TMC_MICROSTEPS: SERIAL_ECHO(st.microsteps()); break;
|
|
|
|
case TMC_TSTEP: {
|
|
|
|
const uint32_t tstep_value = st.TSTEP();
|
|
|
|
if (tstep_value != 0xFFFFF) SERIAL_ECHO(tstep_value); else SERIAL_ECHOPGM("max");
|
|
|
|
} break;
|
|
|
|
#if ENABLED(HYBRID_THRESHOLD)
|
|
|
|
case TMC_TPWMTHRS: SERIAL_ECHO(uint32_t(st.TPWMTHRS())); break;
|
|
|
|
case TMC_TPWMTHRS_MMS: {
|
|
|
|
const uint32_t tpwmthrs_val = st.get_pwm_thrs();
|
|
|
|
if (tpwmthrs_val) SERIAL_ECHO(tpwmthrs_val); else SERIAL_CHAR('-');
|
|
|
|
} break;
|
|
|
|
#endif
|
|
|
|
case TMC_OTPW: serialprint_truefalse(st.otpw()); break;
|
|
|
|
#if ENABLED(MONITOR_DRIVER_STATUS)
|
|
|
|
case TMC_OTPW_TRIGGERED: serialprint_truefalse(st.getOTPW()); break;
|
|
|
|
#endif
|
|
|
|
case TMC_TOFF: SERIAL_ECHO(st.toff()); break;
|
|
|
|
case TMC_TBL: SERIAL_ECHO(st.blank_time()); break;
|
|
|
|
case TMC_HEND: SERIAL_ECHO(st.hysteresis_end()); break;
|
|
|
|
case TMC_HSTRT: SERIAL_ECHO(st.hysteresis_start()); break;
|
|
|
|
case TMC_MSCNT: SERIAL_ECHO(st.get_microstep_counter()); break;
|
|
|
|
default: _tmc_status(st, i); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAS_DRIVER(TMC2660)
|
|
|
|
template<char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
|
|
|
|
void tmc_status(TMCMarlin<TMC2660Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> &st, const TMC_debug_enum i) {
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
switch (i) {
|
|
|
|
case TMC_CODES: st.printLabel(); break;
|
|
|
|
case TMC_ENABLED: serialprint_truefalse(st.isEnabled()); break;
|
|
|
|
case TMC_CURRENT: SERIAL_ECHO(st.getMilliamps()); break;
|
|
|
|
case TMC_RMS_CURRENT: SERIAL_ECHO(st.rms_current()); break;
|
|
|
|
case TMC_MAX_CURRENT: SERIAL_PRINT((float)st.rms_current() * 1.41, 0); break;
|
|
|
|
case TMC_IRUN:
|
|
|
|
SERIAL_ECHO(st.cs());
|
|
|
|
SERIAL_ECHOPGM("/31");
|
|
|
|
break;
|
Squashed commit of the following:
commit 4b9fce2e8588f5dea0658e93fa0260830a851874
Merge: ecb08b15be e17d710c5c
Author: Sergey <sergey@terentiev.me>
Date: Mon Dec 27 16:47:22 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit e17d710c5c4c96e069f64854e3fcdb77abcf90e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 22:13:20 2021 -0600
๐ Marlin 2.0.9.3
commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Dec 25 19:41:01 2021 -0800
๐ Fix MKS Robin E3 NeoPixel pin default (#23350)
commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date: Sun Dec 26 10:12:20 2021 +0800
๐ Fix open for bin rename (#23351)
commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 03:27:45 2021 -0600
๐ง Move MOTHERBOARD closer to top
commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date: Sat Dec 25 05:57:07 2021 -0300
โจ Per-axis TMC hold multiplier (#23345)
commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Fri Dec 24 14:03:32 2021 +0800
โจ MKS TinyBee board support (#23340)
Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>
commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 23 15:19:39 2021 +0700
๐ง Group FAST_PWM_FAN.options (#23331)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Dec 21 23:09:55 2021 -0500
โจ BLTouch High Speed mode runtime configuration (#22916, #23337)
Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 15:44:04 2021 +1300
โจ Option to reset EEPROM on first run (#23276)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date: Sat Dec 18 18:58:46 2021 -0700
โจ Creality3D V4.2.3 / Ender-2 Pro board (#23307)
commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date: Tue Dec 14 07:22:06 2021 +0100
โจ Configurations embed and retrieve (#21321, #23303)
commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Wed Dec 8 20:55:09 2021 +0200
๐ Fix and improve MAX31865 (#23215)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Sat Dec 11 03:38:03 2021 +0800
โจ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)
commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date: Tue Dec 7 02:53:51 2021 +0100
โจ X Twist Compensation & Calibration (#23238)
commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date: Sun Dec 5 22:41:39 2021 +0100
๐ง Chamber Fan index option (#23262)
commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Dec 3 12:48:48 2021 -0600
๐๏ธ Fix Maple HAL/STM32F1 PWM (#23211)
commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Dec 3 19:31:48 2021 +0100
๐๏ธ Rework STM32 timer frequency protection (#23187)
commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 30 15:04:05 2021 -0600
๐ Fix STM32 FastPWM
commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Nov 27 18:33:32 2021 -0600
๐จ Rename HAL timer elements
commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date: Wed Nov 24 08:52:18 2021 +1100
โจ EasyThreeD ET4000+ board and UI (#23080)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date: Tue Nov 23 21:24:24 2021 +0000
โจ MarkForged YX kinematics (#23163)
commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sun Nov 21 11:25:06 2021 -0800
โจ BigTreeTech Mini 12864 V1.0 (#23130)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 21:01:53 2021 +0100
โจ Fan tachometer support (#23086, #23180, #23199)
Co-Authored-By: Scott Lahteine <github@thinkyhead.com>
commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 16 08:54:30 2021 -0600
๐ง SOUND_MENU_ITEM for E3V2
commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:31:35 2021 -0500
๐ธ Expose sub-options for E3V2 Enhanced (#23099)
commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Wed Nov 17 09:33:42 2021 -0800
๐ Overridable probe-related pins (#23107)
commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Wed Nov 10 23:56:10 2021 +0800
โจ Support for BIQU B1-SE-Plus strain gauge probe (#23101)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 23:47:52 2021 -0600
๐จ Configurable firmware bin filename
Configuration.h > FIRMWARE_BIN
commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 20:59:28 2021 -0600
๐จ Ignore more generated files
commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 01:46:51 2021 -0600
๐ง Sanity check MMU2_MENUS
commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date: Fri Dec 24 06:57:20 2021 +0100
๐ Fix Robin Nano v3 filament runout pins (#23344)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date: Thu Dec 23 10:47:52 2021 +0100
๐ธ Show mm'ss during first hour (#23335)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Dec 15 07:51:19 2021 +0700
๐ธ Change "SD" to "Media" or "SD/FD" (#23297)
commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 13:48:38 2021 +1300
๐ Fix Chitu Z_STOP_PIN (#23330)
commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Dec 23 07:49:15 2021 +0100
๐ฉน Fix settings G21 report (#23338)
commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Dec 21 01:26:31 2021 -0600
๐๏ธ FAST_PWM_FAN default 1KHz base freq. (#23326)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 19:25:28 2021 +1300
๐ Fix LCD_BED_LEVELING compile (#23298)
commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date: Mon Dec 20 09:44:43 2021 +0100
๐งโ๐ป Option allowing > 127 Neopixels (#23322)
commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:33:49 2021 -0500
๐จ Update SKR V2 pins
commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Dec 14 01:47:57 2021 +0100
๐ธ Use M600 for disabled MMU (#21865)
commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Tue Dec 14 01:41:21 2021 +0100
๐ Fix TFT_COLOR_UI Release Media issue (#23123)
commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Sat Dec 18 01:31:10 2021 +0200
๐ง Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)
commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 18 17:38:29 2021 -0600
๐ Fix a config comment
commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:18:24 2021 +1300
โจ M115 flag EXTENDED_M20 (#22941)
commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:13:34 2021 +1300
โ๏ธ Clean up duplicate defs (#23182)
commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Tue Dec 14 07:11:52 2021 +0700
๐ฉน Init fan speed at boot (#23181)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 13 16:15:46 2021 -0600
๐ง Fix unknown board test
commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Dec 12 16:16:40 2021 -0600
๐ฉน SD abort requires open file
See #22566
commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 12 11:06:45 2021 +1300
๐ Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)
commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date: Wed Dec 8 23:18:04 2021 -0800
Fix Endstops::report_states (#23280)
Fix regression 4d45fdf0eb
commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Dec 8 18:36:08 2021 -0600
๐จ Misc. probe / endstop cleanup
commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Thu Dec 9 03:37:45 2021 +0800
๐ Fix MKS LVGL UI retraction (#23267)
commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 02:15:31 2021 +0700
๐ฉน Coerce pin_t in set_pwm_duty macros (#23273)
commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date: Wed Dec 8 11:10:37 2021 -0800
๐ Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 01:57:50 2021 +0700
๐ธ Onboard SD for SKR 2.0 / SKR PRO (#23274)
commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Dec 8 12:40:23 2021 -0600
๐จ Rename MAX31865 elements
commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 6 20:18:50 2021 -0600
โ๏ธ MAX31856 => MAX31865
commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Dec 6 15:52:18 2021 -0600
๐ฉน Fix non-PWM cutter compile (#23169)
commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Dec 6 21:40:18 2021 +0000
๐ Fix TWIBus Wire.begin call (#23183)
commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date: Sun Dec 5 22:18:02 2021 +0000
๐ HAL_reboot for native HAL (#23246)
commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date: Sun Dec 5 23:16:23 2021 +0100
๐ Fix env:chitu_f103 (#23225)
commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Dec 6 10:42:56 2021 +1300
๐ More Longer3D LKx Pro serial tests (#23260)
commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Sat Dec 4 23:44:10 2021 +0000
โจ M3426 to read i2c MCP3426 ADC (#23184)
commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Dec 4 17:17:10 2021 -0600
๐ง Cutter pins for SKR 2.0
commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 5 05:14:19 2021 +0700
๐ธ Park nozzle on "loud kill" (#23172)
commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 5 11:10:29 2021 +1300
โจ BigTree SKR 2 with F429 (#23177)
commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sat Dec 4 09:48:54 2021 +1300
๐ Fix TIMER_TONE for ZM3E4 (#23212)
commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date: Tue Nov 30 21:46:48 2021 +0100
๐ฉน Assume 4K EEPROM for RUMBA32 BTT (#23205)
commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 30 13:03:31 2021 -0600
๐ Fix STM32 FastPWM
commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 27 14:59:32 2021 -0800
โ๏ธ Fix Unicode (#23186)
commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date: Sat Nov 27 13:54:39 2021 -0800
๐ฉน Handle nullptr in CardReader::printLongPath (#23197)
commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date: Sat Nov 27 17:58:05 2021 -0500
๐ฉน UM2 extruder cooling fan on PJ6 (#23194)
commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date: Sun Nov 28 03:26:53 2021 +0800
โจ FYSETC Spider v2.2 (#23208)
commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 22:33:33 2021 +0100
๐ฉน Fix include path (#23150)
commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 23 13:54:31 2021 -0800
๐ Biqu BX temporary framework workaround (#23131)
commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Nov 23 14:05:50 2021 -0600
๐ Fix STM32 set_pwm_duty (#23125)
commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Nov 21 20:13:01 2021 +0100
๐ Fix TFT backlight sleep/wake (#23153)
commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sat Nov 20 02:44:53 2021 +0100
โก๏ธ Reduce calls to set fan PWM (#23149)
commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Nov 17 13:01:44 2021 -0600
๐จ Misc formatting
commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 18 01:35:28 2021 +0800
๐ Init PROBE_ENABLE_PIN (#23133)
commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date: Wed Nov 17 12:09:01 2021 -0500
๐จ Fix misspelling (#23137)
commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date: Wed Nov 17 18:07:11 2021 +0100
๐๏ธ Planner::busy() (#23145)
commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 14:06:36 2021 -0600
๐ Fix fast PWM WGM code
Followup to #23102
commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 12:49:25 2021 -0600
๐จ Bring Makefile up to date
commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Tue Nov 16 19:32:43 2021 +0300
๐จ Ignore sim flashdrive file (#23129)
commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date: Tue Nov 16 16:24:53 2021 +0100
๐ Fix G33, Delta radii, reachable (#22795)
commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date: Mon Nov 15 07:46:34 2021 +0300
๐ธ LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)
commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 14 17:19:57 2021 -0600
๐ Fix SENSORLESS_HOMING for 6-axis
commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Mon Nov 15 00:15:07 2021 +0300
๐ธ Simplify touchscreen calibration for SimUI (#23124)
commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:55:20 2021 -0500
๐ธ Fix up E3V2 Enhanced (#23100)
commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 22 13:21:26 2021 -0500
๐จ Misc. issue review patches
commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Sun Nov 14 05:55:31 2021 -0600
โก๏ธ Controller Fan software PWM (etc.) (#23102)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Nov 12 21:26:19 2021 +0100
๐จ MPX ARM Mini pins cleanup (#23113)
commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Nov 12 12:14:28 2021 -0600
๐ [LCP1768] Init PWM in set_pwm_duty (#23110)
commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date: Fri Nov 12 15:57:24 2021 +0100
๐ฉน Fix RGB case light compile (#23108)
commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date: Wed Nov 10 23:58:20 2021 +0800
๐ Fix FYSETC Cheetah 2.0 pins for production (#23104)
commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <github@minims.fr>
Date: Sun Oct 10 01:10:21 2021 +0200
๐ฉน Adjust GTR 1.0 ST7920 display delay (#22904)
commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 00:57:30 2021 -0600
fix breaks in F() resolution
commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:35:31 2021 -0500
๐จ Port libsdl2_net required for macOS simulator
commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 9 08:30:02 2021 -0800
โก๏ธ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)
commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 7 01:11:51 2021 -0600
๐จ Misc. code cleanup
commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date: Sun Oct 3 06:12:51 2021 +0300
โจ WYH L12864 LCD (Alfawise Ex8) (#22863)
commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 6 23:09:15 2021 -0700
๐ธ Indicate Preheating for probe / leveling (#23088)
commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date: Sun Nov 7 07:16:18 2021 +0300
๐ฉน Fix M503 report (#23084)
commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date: Sun Nov 7 11:53:36 2021 +0800
๐ป Preliminary fix for Max31865 SPI (#22682)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date: Sun Nov 7 04:48:00 2021 +0100
๐ Fix JyersUI scrolling filename, etc. (#23082)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Nov 7 15:27:53 2021 +1300
๐ Fix DGUS Reloaded status message (#23090)
commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Nov 4 12:18:23 2021 -0500
๐ป Get/clear reset source earlier
Followup to #23075
commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <skruppy@onmars.eu>
Date: Thu Nov 4 18:11:57 2021 +0100
๐ Prevent AVR watchdogpile (#23075)
commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Nov 4 18:04:04 2021 +0100
๐ Fix TFT backlight [STM32] (#23062)
commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 4 18:54:38 2021 +0800
๐ Fix Octopus-Pro Max31865 / SPI (#23072)
commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Nov 4 17:28:42 2021 +0700
๐จ Fix IntelliSense / PIO conflicts (#23058)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Nov 4 14:04:06 2021 +1300
๐ 'STOP' auto-assign, some Chitu V9 pins (#22889)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:06:31 2021 -0500
๐จ Script 'mfprep' finds pending commits
commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:02:21 2021 -0500
๐จ Update git helper scripts
commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 2 01:28:00 2021 -0500
๐จ Support ABM in mf scripts
commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 23:15:29 2021 -0700
๐ Default NeoPixel pin for MKS Robin E3/E3D (#23060)
commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date: Tue Nov 2 01:47:16 2021 -0400
โ๏ธ Use pwm_set_duty over analogWrite to set PWM (#23048)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 22:43:40 2021 -0700
๐ง Endstop / DIAG homing conflict warning (#23050)
commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 21:23:54 2021 -0700
โจ Allow Low EJERK with LA, optional (#23054)
commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 20:23:24 2021 -0700
โจ Artillery Ruby (STM32F401RCT6) (#23029)
commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Nov 1 23:03:50 2021 +0000
๐ธ More flexible Probe Temperature Compensation (#23033)
commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:17:16 2021 -0500
๐ Tweak EXP comments
commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 23:43:19 2021 -0500
๐จ Help for GDB remote debugging
commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 22:43:02 2021 -0500
๐ฉน Fix linker error (transfer_port_index)
commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 04:16:37 2021 -0500
๐ Update Ender-3 V2 config path
MarlinFirmware/Configurations#600
commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 01:39:33 2021 -0500
๐จ Adjust Ender-3 V2 DWIN options
commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <aalku7@gmail.com>
Date: Sat Oct 30 07:17:20 2021 +0200
โจ Shutdown Host Action (#22908)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Oct 29 20:46:55 2021 -0500
โจ "Rutilea" ESP32 board (#22880)
commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 29 20:42:52 2021 -0500
๐ง Configuration version 02000903
commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:36:06 2021 -0500
๐จ Standard 'cooldown' method
commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 20:01:44 2021 -0500
๐จ Standard material presets behavior
commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:15:58 2021 -0500
๐จ Define HAS_PREHEAT conditional
commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Sat Oct 30 00:49:12 2021 +0200
๐ Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)
commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Oct 28 19:22:35 2021 -0500
๐ Fix EZBoard V2 board name
commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Thu Oct 28 03:26:05 2021 -0700
๐ Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 21:54:43 2021 -0500
๐จ Apply HAS_MULTI_HOTEND conditional
commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <zlopi.ru@gmail.com>
Date: Wed Oct 27 23:10:46 2021 +0300
๐ธ Scroll long filename on MKS TFT (#23031)
commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Oct 28 09:06:06 2021 +1300
๐ฉน Retain LCD pins with motor expansion (#23024)
commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <hibs@circuitco.de>
Date: Wed Oct 27 21:00:02 2021 +0100
๐ Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)
commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Wed Oct 27 21:58:32 2021 +0200
๐ Fix E3V2 (CrealityUI) position display (#23023)
Followup to #23005, #22778
commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 19:36:16 2021 -0500
๐ธ Tweaks to UBL G29 Q
commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <spam@bergermeier.info>
Date: Wed Oct 27 01:05:34 2021 +0200
๐ Fix AUTOTEMP bug (thermal runaway) (#23025)
Regression from 9823a37
commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Oct 25 06:33:40 2021 +0100
๐ Add USE_TEMP_EXT_COMPENSATION options (#23007)
commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Oct 24 23:33:27 2021 -0500
๐ง Fewer alerts about Z_SAFE_HOMING
commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Fri Oct 22 18:16:07 2021 +0200
๐ Fix SHOW_REMAINING_TIME option for JyersUI (#22999)
commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Fri Oct 22 08:52:31 2021 -0700
โจ BigTreeTech TFT35 SPI V1.0 (#22986)
commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Oct 19 06:05:23 2021 -0500
๐ฉน Fix pragma ignored for older GCC (#22978)
commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Oct 19 05:59:48 2021 -0500
๐จ Refactor MOSFET pins layout (#22983)
commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 19 05:52:41 2021 -0500
๐จ Pragma GCC cleanup
commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <jason.inet@gmail.com>
Date: Mon Oct 18 01:11:16 2021 -0700
๐ Fix max chamber fan speed (#22977)
commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Oct 18 00:57:54 2021 -0700
๐ Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)
commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Oct 18 20:54:20 2021 +1300
๐ Fix MMU1 compile (#22965)
commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Oct 18 02:40:47 2021 -0500
๐จ Suppress type warning (#22976)
commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 22:10:08 2021 -0500
๐จ Add MKS UI goto_previous_ui
commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 20:24:41 2021 -0500
๐ธ Tweak MKS UI G-code console
commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 18:11:16 2021 -0500
๐จ Fix up MKS UI defines
commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 15 00:24:08 2021 -0500
๐จ Refactor Host Actions as singleton
commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Fri Oct 15 14:38:03 2021 +1300
๐ง Add, update TFT sanity checks (#22928)
commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 23:19:05 2021 -0400
โก๏ธ Formbot ST7920 delays, intentional X2 pins (#22915)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <svetotled@gmail.com>
Date: Wed Oct 13 05:45:00 2021 +0300
๐จ Update MKS UI for no bed, extruder (#22938)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 19:40:56 2021 -0400
๐ Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)
commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Oct 11 23:42:29 2021 +0100
โจ M261 S I2C output format (#22890)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Oct 10 01:05:24 2021 +0200
๐ Queue string followup (#22900)
commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date: Sat Oct 9 15:09:50 2021 -0700
๐ LCD string followup (#22892)
commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:19:28 2021 -0500
๐ Followup to F() in config_line
Followup to 1dafd1887e
commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Mon Oct 4 19:50:14 2021 -0500
๐ ExtUI F() followups
Followup to 12b5d997a2
commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 20:15:52 2021 -0500
๐จ Apply F() to kill / sendinfoscreen
commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 19:28:29 2021 -0500
๐จ Apply F() to MKS UI errors, assets
commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:46:42 2021 -0500
๐จ Apply F() to various reports
commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:40:01 2021 -0500
๐จ Apply F() to G-code report header
commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 23:52:41 2021 -0500
๐จ Apply F() to UTF-8/MMU2 string put
commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 22:11:48 2021 -0500
๐จ Apply F() to some ExtUI functions
commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:55:08 2021 -0500
๐จ Apply F() to Host Actions strings
commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 17:05:11 2021 -0500
๐จ Apply F() to status message
commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:03:07 2021 -0500
๐จ Apply F() to serial macros
commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 21:11:31 2021 -0500
๐จ Apply F() to G-code suite and queue
commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:43:52 2021 -0500
๐จ Apply F() to G-code subcommands
commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:22:37 2021 -0500
๐จ Update F string declarations
commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Oct 4 00:24:41 2021 -0500
๐จ Axis name string interpolation, with examples (#22879)
commit ecb08b15bed770972a263abb600207a0db8791d1
Merge: 798d12c2af 854ce63358
Author: Sergey <sergey@terentiev.me>
Date: Wed Dec 22 11:58:28 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 19 05:33:21 2021 +0700
๐ Fix loud_kill heater disable (#23314)
commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date: Tue Nov 23 22:30:13 2021 +0100
๐ Fix homing current for extra axes (#23152)
Followup to #19112
commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Sat Oct 9 19:13:19 2021 -0400
๐ Fix IDEX Duplication Mode Positioning (#22914)
Fixing #22538
commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Nov 24 04:19:32 2021 +0700
๐ Fix serial_data_available (#23160)
3 years ago
|
|
|
case TMC_VSENSE: SERIAL_ECHOF(st.vsense() ? F("1=.165") : F("0=.310")); break;
|
|
|
|
case TMC_MICROSTEPS: SERIAL_ECHO(st.microsteps()); break;
|
|
|
|
//case TMC_OTPW: serialprint_truefalse(st.otpw()); break;
|
|
|
|
//case TMC_OTPW_TRIGGERED: serialprint_truefalse(st.getOTPW()); break;
|
|
|
|
case TMC_SGT: SERIAL_ECHO(st.sgt()); break;
|
|
|
|
case TMC_TOFF: SERIAL_ECHO(st.toff()); break;
|
|
|
|
case TMC_TBL: SERIAL_ECHO(st.blank_time()); break;
|
|
|
|
case TMC_HEND: SERIAL_ECHO(st.hysteresis_end()); break;
|
|
|
|
case TMC_HSTRT: SERIAL_ECHO(st.hysteresis_start()); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
template <typename TMC>
|
|
|
|
static void tmc_parse_drv_status(TMC &st, const TMC_drv_status_enum i) {
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
switch (i) {
|
|
|
|
case TMC_DRV_CODES: st.printLabel(); break;
|
|
|
|
case TMC_STST: if (!st.stst()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_OLB: if (st.olb()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_OLA: if (st.ola()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_S2GB: if (st.s2gb()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_S2GA: if (st.s2ga()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_DRV_OTPW: if (st.otpw()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_OT: if (st.ot()) SERIAL_CHAR('*'); break;
|
|
|
|
case TMC_DRV_STATUS_HEX: {
|
|
|
|
const uint32_t drv_status = st.DRV_STATUS();
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
st.printLabel();
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
print_hex_long(drv_status, ':');
|
|
|
|
if (drv_status == 0xFFFFFFFF || drv_status == 0) SERIAL_ECHOPGM("\t Bad response!");
|
|
|
|
SERIAL_EOL();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: _tmc_parse_drv_status(st, i); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tmc_debug_loop(const TMC_debug_enum n, LOGICAL_AXIS_ARGS(const bool)) {
|
|
|
|
if (x) {
|
|
|
|
#if AXIS_IS_TMC(X)
|
|
|
|
tmc_status(stepperX, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
|
|
|
tmc_status(stepperX2, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Y_AXIS, y)) {
|
|
|
|
#if AXIS_IS_TMC(Y)
|
|
|
|
tmc_status(stepperY, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
|
|
|
tmc_status(stepperY2, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Z_AXIS, z)) {
|
|
|
|
#if AXIS_IS_TMC(Z)
|
|
|
|
tmc_status(stepperZ, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
|
|
|
tmc_status(stepperZ2, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
|
|
|
tmc_status(stepperZ3, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z4)
|
|
|
|
tmc_status(stepperZ4, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(I)
|
|
|
|
if (i) tmc_status(stepperI, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(J)
|
|
|
|
if (j) tmc_status(stepperJ, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(K)
|
|
|
|
if (k) tmc_status(stepperK, n);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (TERN0(HAS_EXTRUDERS, e)) {
|
|
|
|
#if AXIS_IS_TMC(E0)
|
|
|
|
tmc_status(stepperE0, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E1)
|
|
|
|
tmc_status(stepperE1, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E2)
|
|
|
|
tmc_status(stepperE2, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E3)
|
|
|
|
tmc_status(stepperE3, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E4)
|
|
|
|
tmc_status(stepperE4, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E5)
|
|
|
|
tmc_status(stepperE5, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E6)
|
|
|
|
tmc_status(stepperE6, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E7)
|
|
|
|
tmc_status(stepperE7, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
SERIAL_EOL();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void drv_status_loop(const TMC_drv_status_enum n, LOGICAL_AXIS_ARGS(const bool)) {
|
|
|
|
if (x) {
|
|
|
|
#if AXIS_IS_TMC(X)
|
|
|
|
tmc_parse_drv_status(stepperX, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
|
|
|
tmc_parse_drv_status(stepperX2, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Y_AXIS, y)) {
|
|
|
|
#if AXIS_IS_TMC(Y)
|
|
|
|
tmc_parse_drv_status(stepperY, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
|
|
|
tmc_parse_drv_status(stepperY2, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Z_AXIS, z)) {
|
|
|
|
#if AXIS_IS_TMC(Z)
|
|
|
|
tmc_parse_drv_status(stepperZ, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
|
|
|
tmc_parse_drv_status(stepperZ2, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
|
|
|
tmc_parse_drv_status(stepperZ3, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z4)
|
|
|
|
tmc_parse_drv_status(stepperZ4, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(I)
|
|
|
|
if (i) tmc_parse_drv_status(stepperI, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(J)
|
|
|
|
if (j) tmc_parse_drv_status(stepperJ, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(K)
|
|
|
|
if (k) tmc_parse_drv_status(stepperK, n);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (TERN0(HAS_EXTRUDERS, e)) {
|
|
|
|
#if AXIS_IS_TMC(E0)
|
|
|
|
tmc_parse_drv_status(stepperE0, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E1)
|
|
|
|
tmc_parse_drv_status(stepperE1, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E2)
|
|
|
|
tmc_parse_drv_status(stepperE2, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E3)
|
|
|
|
tmc_parse_drv_status(stepperE3, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E4)
|
|
|
|
tmc_parse_drv_status(stepperE4, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E5)
|
|
|
|
tmc_parse_drv_status(stepperE5, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E6)
|
|
|
|
tmc_parse_drv_status(stepperE6, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E7)
|
|
|
|
tmc_parse_drv_status(stepperE7, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
SERIAL_EOL();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* M122 report functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
void tmc_report_all(LOGICAL_AXIS_ARGS(const bool)) {
|
|
|
|
#define TMC_REPORT(LABEL, ITEM) do{ SERIAL_ECHOPGM(LABEL); tmc_debug_loop(ITEM, LOGICAL_AXIS_ARGS()); }while(0)
|
|
|
|
#define DRV_REPORT(LABEL, ITEM) do{ SERIAL_ECHOPGM(LABEL); drv_status_loop(ITEM, LOGICAL_AXIS_ARGS()); }while(0)
|
|
|
|
|
|
|
|
TMC_REPORT("\t", TMC_CODES);
|
|
|
|
#if HAS_DRIVER(TMC2209)
|
|
|
|
TMC_REPORT("Address\t", TMC_UART_ADDR);
|
|
|
|
#endif
|
|
|
|
TMC_REPORT("Enabled\t", TMC_ENABLED);
|
|
|
|
TMC_REPORT("Set current", TMC_CURRENT);
|
|
|
|
TMC_REPORT("RMS current", TMC_RMS_CURRENT);
|
|
|
|
TMC_REPORT("MAX current", TMC_MAX_CURRENT);
|
|
|
|
TMC_REPORT("Run current", TMC_IRUN);
|
|
|
|
TMC_REPORT("Hold current", TMC_IHOLD);
|
|
|
|
#if HAS_DRIVER(TMC2160) || HAS_DRIVER(TMC5160)
|
|
|
|
TMC_REPORT("Global scaler", TMC_GLOBAL_SCALER);
|
|
|
|
#endif
|
|
|
|
TMC_REPORT("CS actual", TMC_CS_ACTUAL);
|
|
|
|
TMC_REPORT("PWM scale", TMC_PWM_SCALE);
|
|
|
|
#if HAS_DRIVER(TMC2130) || HAS_DRIVER(TMC2224) || HAS_DRIVER(TMC2660) || HAS_TMC220x
|
|
|
|
TMC_REPORT("vsense\t", TMC_VSENSE);
|
|
|
|
#endif
|
|
|
|
TMC_REPORT("stealthChop", TMC_STEALTHCHOP);
|
|
|
|
TMC_REPORT("msteps\t", TMC_MICROSTEPS);
|
|
|
|
TMC_REPORT("interp\t", TMC_INTERPOLATE);
|
|
|
|
TMC_REPORT("tstep\t", TMC_TSTEP);
|
|
|
|
TMC_REPORT("PWM thresh.", TMC_TPWMTHRS);
|
|
|
|
TMC_REPORT("[mm/s]\t", TMC_TPWMTHRS_MMS);
|
|
|
|
TMC_REPORT("OT prewarn", TMC_OTPW);
|
|
|
|
#if ENABLED(MONITOR_DRIVER_STATUS)
|
|
|
|
TMC_REPORT("triggered\n OTP\t", TMC_OTPW_TRIGGERED);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_TMC220x
|
|
|
|
TMC_REPORT("pwm scale sum", TMC_PWM_SCALE_SUM);
|
|
|
|
TMC_REPORT("pwm scale auto", TMC_PWM_SCALE_AUTO);
|
|
|
|
TMC_REPORT("pwm offset auto", TMC_PWM_OFS_AUTO);
|
|
|
|
TMC_REPORT("pwm grad auto", TMC_PWM_GRAD_AUTO);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
TMC_REPORT("off time", TMC_TOFF);
|
|
|
|
TMC_REPORT("blank time", TMC_TBL);
|
|
|
|
TMC_REPORT("hysteresis\n -end\t", TMC_HEND);
|
|
|
|
TMC_REPORT(" -start\t", TMC_HSTRT);
|
|
|
|
TMC_REPORT("Stallguard thrs", TMC_SGT);
|
|
|
|
TMC_REPORT("uStep count", TMC_MSCNT);
|
|
|
|
DRV_REPORT("DRVSTATUS", TMC_DRV_CODES);
|
|
|
|
#if HAS_TMCX1X0 || HAS_TMC220x
|
|
|
|
DRV_REPORT("sg_result", TMC_SG_RESULT);
|
|
|
|
#endif
|
|
|
|
#if HAS_TMCX1X0
|
|
|
|
DRV_REPORT("stallguard", TMC_STALLGUARD);
|
|
|
|
DRV_REPORT("fsactive", TMC_FSACTIVE);
|
|
|
|
#endif
|
|
|
|
DRV_REPORT("stst\t", TMC_STST);
|
|
|
|
DRV_REPORT("olb\t", TMC_OLB);
|
|
|
|
DRV_REPORT("ola\t", TMC_OLA);
|
|
|
|
DRV_REPORT("s2gb\t", TMC_S2GB);
|
|
|
|
DRV_REPORT("s2ga\t", TMC_S2GA);
|
|
|
|
DRV_REPORT("otpw\t", TMC_DRV_OTPW);
|
|
|
|
DRV_REPORT("ot\t", TMC_OT);
|
|
|
|
#if HAS_TMC220x
|
|
|
|
DRV_REPORT("157C\t", TMC_T157);
|
|
|
|
DRV_REPORT("150C\t", TMC_T150);
|
|
|
|
DRV_REPORT("143C\t", TMC_T143);
|
|
|
|
DRV_REPORT("120C\t", TMC_T120);
|
|
|
|
DRV_REPORT("s2vsa\t", TMC_S2VSA);
|
|
|
|
DRV_REPORT("s2vsb\t", TMC_S2VSB);
|
|
|
|
#endif
|
|
|
|
DRV_REPORT("Driver registers:\n",TMC_DRV_STATUS_HEX);
|
|
|
|
SERIAL_EOL();
|
|
|
|
}
|
|
|
|
|
|
|
|
#define PRINT_TMC_REGISTER(REG_CASE) case TMC_GET_##REG_CASE: print_hex_long(st.REG_CASE(), ':'); break
|
|
|
|
|
|
|
|
#if HAS_TMCX1X0
|
|
|
|
static void tmc_get_ic_registers(TMC2130Stepper &st, const TMC_get_registers_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
PRINT_TMC_REGISTER(TCOOLTHRS);
|
|
|
|
PRINT_TMC_REGISTER(THIGH);
|
|
|
|
PRINT_TMC_REGISTER(COOLCONF);
|
|
|
|
default: SERIAL_CHAR('\t'); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if HAS_TMC220x
|
|
|
|
static void tmc_get_ic_registers(TMC2208Stepper, const TMC_get_registers_enum) { SERIAL_CHAR('\t'); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_TRINAMIC_CONFIG
|
|
|
|
template<class TMC>
|
|
|
|
static void tmc_get_registers(TMC &st, const TMC_get_registers_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_AXIS_CODES: SERIAL_CHAR('\t'); st.printLabel(); break;
|
|
|
|
PRINT_TMC_REGISTER(GCONF);
|
|
|
|
PRINT_TMC_REGISTER(IHOLD_IRUN);
|
|
|
|
PRINT_TMC_REGISTER(GSTAT);
|
|
|
|
PRINT_TMC_REGISTER(IOIN);
|
|
|
|
PRINT_TMC_REGISTER(TPOWERDOWN);
|
|
|
|
PRINT_TMC_REGISTER(TSTEP);
|
|
|
|
PRINT_TMC_REGISTER(TPWMTHRS);
|
|
|
|
PRINT_TMC_REGISTER(CHOPCONF);
|
|
|
|
PRINT_TMC_REGISTER(PWMCONF);
|
|
|
|
PRINT_TMC_REGISTER(PWM_SCALE);
|
|
|
|
PRINT_TMC_REGISTER(DRV_STATUS);
|
|
|
|
default: tmc_get_ic_registers(st, i); break;
|
|
|
|
}
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if HAS_DRIVER(TMC2660)
|
|
|
|
template <char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
|
|
|
|
static void tmc_get_registers(TMCMarlin<TMC2660Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> &st, const TMC_get_registers_enum i) {
|
|
|
|
switch (i) {
|
|
|
|
case TMC_AXIS_CODES: SERIAL_CHAR('\t'); st.printLabel(); break;
|
|
|
|
PRINT_TMC_REGISTER(DRVCONF);
|
|
|
|
PRINT_TMC_REGISTER(DRVCTRL);
|
|
|
|
PRINT_TMC_REGISTER(CHOPCONF);
|
|
|
|
PRINT_TMC_REGISTER(DRVSTATUS);
|
|
|
|
PRINT_TMC_REGISTER(SGCSCONF);
|
|
|
|
PRINT_TMC_REGISTER(SMARTEN);
|
|
|
|
default: SERIAL_CHAR('\t'); break;
|
|
|
|
}
|
|
|
|
SERIAL_CHAR('\t');
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void tmc_get_registers(TMC_get_registers_enum n, LOGICAL_AXIS_ARGS(const bool)) {
|
|
|
|
if (x) {
|
|
|
|
#if AXIS_IS_TMC(X)
|
|
|
|
tmc_get_registers(stepperX, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
|
|
|
tmc_get_registers(stepperX2, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Y_AXIS, y)) {
|
|
|
|
#if AXIS_IS_TMC(Y)
|
|
|
|
tmc_get_registers(stepperY, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
|
|
|
tmc_get_registers(stepperY2, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Z_AXIS, z)) {
|
|
|
|
#if AXIS_IS_TMC(Z)
|
|
|
|
tmc_get_registers(stepperZ, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
|
|
|
tmc_get_registers(stepperZ2, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
|
|
|
tmc_get_registers(stepperZ3, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z4)
|
|
|
|
tmc_get_registers(stepperZ4, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(I)
|
|
|
|
if (i) tmc_get_registers(stepperI, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(J)
|
|
|
|
if (j) tmc_get_registers(stepperJ, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(K)
|
|
|
|
if (k) tmc_get_registers(stepperK, n);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (TERN0(HAS_EXTRUDERS, e)) {
|
|
|
|
#if AXIS_IS_TMC(E0)
|
|
|
|
tmc_get_registers(stepperE0, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E1)
|
|
|
|
tmc_get_registers(stepperE1, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E2)
|
|
|
|
tmc_get_registers(stepperE2, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E3)
|
|
|
|
tmc_get_registers(stepperE3, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E4)
|
|
|
|
tmc_get_registers(stepperE4, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E5)
|
|
|
|
tmc_get_registers(stepperE5, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E6)
|
|
|
|
tmc_get_registers(stepperE6, n);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E7)
|
|
|
|
tmc_get_registers(stepperE7, n);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
SERIAL_EOL();
|
|
|
|
}
|
|
|
|
|
|
|
|
void tmc_get_registers(LOGICAL_AXIS_ARGS(bool)) {
|
|
|
|
#define _TMC_GET_REG(LABEL, ITEM) do{ SERIAL_ECHOPGM(LABEL); tmc_get_registers(ITEM, LOGICAL_AXIS_ARGS()); }while(0)
|
|
|
|
#define TMC_GET_REG(NAME, TABS) _TMC_GET_REG(STRINGIFY(NAME) TABS, TMC_GET_##NAME)
|
|
|
|
_TMC_GET_REG("\t", TMC_AXIS_CODES);
|
|
|
|
TMC_GET_REG(GCONF, "\t\t");
|
|
|
|
TMC_GET_REG(IHOLD_IRUN, "\t");
|
|
|
|
TMC_GET_REG(GSTAT, "\t\t");
|
|
|
|
TMC_GET_REG(IOIN, "\t\t");
|
|
|
|
TMC_GET_REG(TPOWERDOWN, "\t");
|
|
|
|
TMC_GET_REG(TSTEP, "\t\t");
|
|
|
|
TMC_GET_REG(TPWMTHRS, "\t");
|
|
|
|
TMC_GET_REG(TCOOLTHRS, "\t");
|
|
|
|
TMC_GET_REG(THIGH, "\t\t");
|
|
|
|
TMC_GET_REG(CHOPCONF, "\t");
|
|
|
|
TMC_GET_REG(COOLCONF, "\t");
|
|
|
|
TMC_GET_REG(PWMCONF, "\t");
|
|
|
|
TMC_GET_REG(PWM_SCALE, "\t");
|
|
|
|
TMC_GET_REG(DRV_STATUS, "\t");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TMC_DEBUG
|
|
|
|
|
|
|
|
#if USE_SENSORLESS
|
|
|
|
|
|
|
|
bool tmc_enable_stallguard(TMC2130Stepper &st) {
|
|
|
|
const bool stealthchop_was_enabled = st.en_pwm_mode();
|
|
|
|
|
|
|
|
st.TCOOLTHRS(0xFFFFF);
|
|
|
|
st.en_pwm_mode(false);
|
|
|
|
st.diag1_stall(true);
|
|
|
|
|
|
|
|
return stealthchop_was_enabled;
|
|
|
|
}
|
|
|
|
void tmc_disable_stallguard(TMC2130Stepper &st, const bool restore_stealth) {
|
|
|
|
st.TCOOLTHRS(0);
|
|
|
|
st.en_pwm_mode(restore_stealth);
|
|
|
|
st.diag1_stall(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tmc_enable_stallguard(TMC2209Stepper &st) {
|
|
|
|
const bool stealthchop_was_enabled = !st.en_spreadCycle();
|
|
|
|
|
|
|
|
st.TCOOLTHRS(0xFFFFF);
|
|
|
|
st.en_spreadCycle(false);
|
|
|
|
return stealthchop_was_enabled;
|
|
|
|
}
|
|
|
|
void tmc_disable_stallguard(TMC2209Stepper &st, const bool restore_stealth) {
|
|
|
|
st.en_spreadCycle(!restore_stealth);
|
|
|
|
st.TCOOLTHRS(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tmc_enable_stallguard(TMC2660Stepper) {
|
|
|
|
// TODO
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void tmc_disable_stallguard(TMC2660Stepper, const bool) {};
|
|
|
|
|
|
|
|
#endif // USE_SENSORLESS
|
|
|
|
|
|
|
|
#if HAS_TMC_SPI
|
|
|
|
#define SET_CS_PIN(st) OUT_WRITE(st##_CS_PIN, HIGH)
|
|
|
|
void tmc_init_cs_pins() {
|
|
|
|
#if AXIS_HAS_SPI(X)
|
|
|
|
SET_CS_PIN(X);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(Y)
|
|
|
|
SET_CS_PIN(Y);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(Z)
|
|
|
|
SET_CS_PIN(Z);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(X2)
|
|
|
|
SET_CS_PIN(X2);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(Y2)
|
|
|
|
SET_CS_PIN(Y2);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(Z2)
|
|
|
|
SET_CS_PIN(Z2);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(Z3)
|
|
|
|
SET_CS_PIN(Z3);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(Z4)
|
|
|
|
SET_CS_PIN(Z4);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(I)
|
|
|
|
SET_CS_PIN(I);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(J)
|
|
|
|
SET_CS_PIN(J);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(K)
|
|
|
|
SET_CS_PIN(K);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E0)
|
|
|
|
SET_CS_PIN(E0);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E1)
|
|
|
|
SET_CS_PIN(E1);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E2)
|
|
|
|
SET_CS_PIN(E2);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E3)
|
|
|
|
SET_CS_PIN(E3);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E4)
|
|
|
|
SET_CS_PIN(E4);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E5)
|
|
|
|
SET_CS_PIN(E5);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E6)
|
|
|
|
SET_CS_PIN(E6);
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_SPI(E7)
|
|
|
|
SET_CS_PIN(E7);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif // HAS_TMC_SPI
|
|
|
|
|
|
|
|
template<typename TMC>
|
|
|
|
static bool test_connection(TMC &st) {
|
|
|
|
SERIAL_ECHOPGM("Testing ");
|
|
|
|
st.printLabel();
|
|
|
|
SERIAL_ECHOPGM(" connection... ");
|
|
|
|
const uint8_t test_result = st.test_connection();
|
|
|
|
|
|
|
|
if (test_result > 0) SERIAL_ECHOPGM("Error: All ");
|
|
|
|
|
Squashed commit of the following:
commit 4b9fce2e8588f5dea0658e93fa0260830a851874
Merge: ecb08b15be e17d710c5c
Author: Sergey <sergey@terentiev.me>
Date: Mon Dec 27 16:47:22 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit e17d710c5c4c96e069f64854e3fcdb77abcf90e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 22:13:20 2021 -0600
๐ Marlin 2.0.9.3
commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Dec 25 19:41:01 2021 -0800
๐ Fix MKS Robin E3 NeoPixel pin default (#23350)
commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date: Sun Dec 26 10:12:20 2021 +0800
๐ Fix open for bin rename (#23351)
commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 03:27:45 2021 -0600
๐ง Move MOTHERBOARD closer to top
commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date: Sat Dec 25 05:57:07 2021 -0300
โจ Per-axis TMC hold multiplier (#23345)
commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Fri Dec 24 14:03:32 2021 +0800
โจ MKS TinyBee board support (#23340)
Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>
commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 23 15:19:39 2021 +0700
๐ง Group FAST_PWM_FAN.options (#23331)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Dec 21 23:09:55 2021 -0500
โจ BLTouch High Speed mode runtime configuration (#22916, #23337)
Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 15:44:04 2021 +1300
โจ Option to reset EEPROM on first run (#23276)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date: Sat Dec 18 18:58:46 2021 -0700
โจ Creality3D V4.2.3 / Ender-2 Pro board (#23307)
commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date: Tue Dec 14 07:22:06 2021 +0100
โจ Configurations embed and retrieve (#21321, #23303)
commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Wed Dec 8 20:55:09 2021 +0200
๐ Fix and improve MAX31865 (#23215)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Sat Dec 11 03:38:03 2021 +0800
โจ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)
commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date: Tue Dec 7 02:53:51 2021 +0100
โจ X Twist Compensation & Calibration (#23238)
commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date: Sun Dec 5 22:41:39 2021 +0100
๐ง Chamber Fan index option (#23262)
commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Dec 3 12:48:48 2021 -0600
๐๏ธ Fix Maple HAL/STM32F1 PWM (#23211)
commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Dec 3 19:31:48 2021 +0100
๐๏ธ Rework STM32 timer frequency protection (#23187)
commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 30 15:04:05 2021 -0600
๐ Fix STM32 FastPWM
commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Nov 27 18:33:32 2021 -0600
๐จ Rename HAL timer elements
commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date: Wed Nov 24 08:52:18 2021 +1100
โจ EasyThreeD ET4000+ board and UI (#23080)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date: Tue Nov 23 21:24:24 2021 +0000
โจ MarkForged YX kinematics (#23163)
commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sun Nov 21 11:25:06 2021 -0800
โจ BigTreeTech Mini 12864 V1.0 (#23130)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 21:01:53 2021 +0100
โจ Fan tachometer support (#23086, #23180, #23199)
Co-Authored-By: Scott Lahteine <github@thinkyhead.com>
commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 16 08:54:30 2021 -0600
๐ง SOUND_MENU_ITEM for E3V2
commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:31:35 2021 -0500
๐ธ Expose sub-options for E3V2 Enhanced (#23099)
commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Wed Nov 17 09:33:42 2021 -0800
๐ Overridable probe-related pins (#23107)
commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Wed Nov 10 23:56:10 2021 +0800
โจ Support for BIQU B1-SE-Plus strain gauge probe (#23101)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 23:47:52 2021 -0600
๐จ Configurable firmware bin filename
Configuration.h > FIRMWARE_BIN
commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 20:59:28 2021 -0600
๐จ Ignore more generated files
commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 01:46:51 2021 -0600
๐ง Sanity check MMU2_MENUS
commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date: Fri Dec 24 06:57:20 2021 +0100
๐ Fix Robin Nano v3 filament runout pins (#23344)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date: Thu Dec 23 10:47:52 2021 +0100
๐ธ Show mm'ss during first hour (#23335)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Dec 15 07:51:19 2021 +0700
๐ธ Change "SD" to "Media" or "SD/FD" (#23297)
commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 13:48:38 2021 +1300
๐ Fix Chitu Z_STOP_PIN (#23330)
commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Dec 23 07:49:15 2021 +0100
๐ฉน Fix settings G21 report (#23338)
commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Dec 21 01:26:31 2021 -0600
๐๏ธ FAST_PWM_FAN default 1KHz base freq. (#23326)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 19:25:28 2021 +1300
๐ Fix LCD_BED_LEVELING compile (#23298)
commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date: Mon Dec 20 09:44:43 2021 +0100
๐งโ๐ป Option allowing > 127 Neopixels (#23322)
commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:33:49 2021 -0500
๐จ Update SKR V2 pins
commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Dec 14 01:47:57 2021 +0100
๐ธ Use M600 for disabled MMU (#21865)
commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Tue Dec 14 01:41:21 2021 +0100
๐ Fix TFT_COLOR_UI Release Media issue (#23123)
commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Sat Dec 18 01:31:10 2021 +0200
๐ง Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)
commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 18 17:38:29 2021 -0600
๐ Fix a config comment
commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:18:24 2021 +1300
โจ M115 flag EXTENDED_M20 (#22941)
commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:13:34 2021 +1300
โ๏ธ Clean up duplicate defs (#23182)
commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Tue Dec 14 07:11:52 2021 +0700
๐ฉน Init fan speed at boot (#23181)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 13 16:15:46 2021 -0600
๐ง Fix unknown board test
commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Dec 12 16:16:40 2021 -0600
๐ฉน SD abort requires open file
See #22566
commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 12 11:06:45 2021 +1300
๐ Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)
commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date: Wed Dec 8 23:18:04 2021 -0800
Fix Endstops::report_states (#23280)
Fix regression 4d45fdf0eb
commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Dec 8 18:36:08 2021 -0600
๐จ Misc. probe / endstop cleanup
commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Thu Dec 9 03:37:45 2021 +0800
๐ Fix MKS LVGL UI retraction (#23267)
commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 02:15:31 2021 +0700
๐ฉน Coerce pin_t in set_pwm_duty macros (#23273)
commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date: Wed Dec 8 11:10:37 2021 -0800
๐ Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 01:57:50 2021 +0700
๐ธ Onboard SD for SKR 2.0 / SKR PRO (#23274)
commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Dec 8 12:40:23 2021 -0600
๐จ Rename MAX31865 elements
commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 6 20:18:50 2021 -0600
โ๏ธ MAX31856 => MAX31865
commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Dec 6 15:52:18 2021 -0600
๐ฉน Fix non-PWM cutter compile (#23169)
commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Dec 6 21:40:18 2021 +0000
๐ Fix TWIBus Wire.begin call (#23183)
commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date: Sun Dec 5 22:18:02 2021 +0000
๐ HAL_reboot for native HAL (#23246)
commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date: Sun Dec 5 23:16:23 2021 +0100
๐ Fix env:chitu_f103 (#23225)
commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Dec 6 10:42:56 2021 +1300
๐ More Longer3D LKx Pro serial tests (#23260)
commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Sat Dec 4 23:44:10 2021 +0000
โจ M3426 to read i2c MCP3426 ADC (#23184)
commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Dec 4 17:17:10 2021 -0600
๐ง Cutter pins for SKR 2.0
commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 5 05:14:19 2021 +0700
๐ธ Park nozzle on "loud kill" (#23172)
commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 5 11:10:29 2021 +1300
โจ BigTree SKR 2 with F429 (#23177)
commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sat Dec 4 09:48:54 2021 +1300
๐ Fix TIMER_TONE for ZM3E4 (#23212)
commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date: Tue Nov 30 21:46:48 2021 +0100
๐ฉน Assume 4K EEPROM for RUMBA32 BTT (#23205)
commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 30 13:03:31 2021 -0600
๐ Fix STM32 FastPWM
commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 27 14:59:32 2021 -0800
โ๏ธ Fix Unicode (#23186)
commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date: Sat Nov 27 13:54:39 2021 -0800
๐ฉน Handle nullptr in CardReader::printLongPath (#23197)
commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date: Sat Nov 27 17:58:05 2021 -0500
๐ฉน UM2 extruder cooling fan on PJ6 (#23194)
commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date: Sun Nov 28 03:26:53 2021 +0800
โจ FYSETC Spider v2.2 (#23208)
commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 22:33:33 2021 +0100
๐ฉน Fix include path (#23150)
commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 23 13:54:31 2021 -0800
๐ Biqu BX temporary framework workaround (#23131)
commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Nov 23 14:05:50 2021 -0600
๐ Fix STM32 set_pwm_duty (#23125)
commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Nov 21 20:13:01 2021 +0100
๐ Fix TFT backlight sleep/wake (#23153)
commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sat Nov 20 02:44:53 2021 +0100
โก๏ธ Reduce calls to set fan PWM (#23149)
commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Nov 17 13:01:44 2021 -0600
๐จ Misc formatting
commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 18 01:35:28 2021 +0800
๐ Init PROBE_ENABLE_PIN (#23133)
commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date: Wed Nov 17 12:09:01 2021 -0500
๐จ Fix misspelling (#23137)
commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date: Wed Nov 17 18:07:11 2021 +0100
๐๏ธ Planner::busy() (#23145)
commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 14:06:36 2021 -0600
๐ Fix fast PWM WGM code
Followup to #23102
commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 12:49:25 2021 -0600
๐จ Bring Makefile up to date
commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Tue Nov 16 19:32:43 2021 +0300
๐จ Ignore sim flashdrive file (#23129)
commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date: Tue Nov 16 16:24:53 2021 +0100
๐ Fix G33, Delta radii, reachable (#22795)
commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date: Mon Nov 15 07:46:34 2021 +0300
๐ธ LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)
commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 14 17:19:57 2021 -0600
๐ Fix SENSORLESS_HOMING for 6-axis
commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Mon Nov 15 00:15:07 2021 +0300
๐ธ Simplify touchscreen calibration for SimUI (#23124)
commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:55:20 2021 -0500
๐ธ Fix up E3V2 Enhanced (#23100)
commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 22 13:21:26 2021 -0500
๐จ Misc. issue review patches
commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Sun Nov 14 05:55:31 2021 -0600
โก๏ธ Controller Fan software PWM (etc.) (#23102)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Nov 12 21:26:19 2021 +0100
๐จ MPX ARM Mini pins cleanup (#23113)
commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Nov 12 12:14:28 2021 -0600
๐ [LCP1768] Init PWM in set_pwm_duty (#23110)
commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date: Fri Nov 12 15:57:24 2021 +0100
๐ฉน Fix RGB case light compile (#23108)
commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date: Wed Nov 10 23:58:20 2021 +0800
๐ Fix FYSETC Cheetah 2.0 pins for production (#23104)
commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <github@minims.fr>
Date: Sun Oct 10 01:10:21 2021 +0200
๐ฉน Adjust GTR 1.0 ST7920 display delay (#22904)
commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 00:57:30 2021 -0600
fix breaks in F() resolution
commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:35:31 2021 -0500
๐จ Port libsdl2_net required for macOS simulator
commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 9 08:30:02 2021 -0800
โก๏ธ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)
commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 7 01:11:51 2021 -0600
๐จ Misc. code cleanup
commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date: Sun Oct 3 06:12:51 2021 +0300
โจ WYH L12864 LCD (Alfawise Ex8) (#22863)
commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 6 23:09:15 2021 -0700
๐ธ Indicate Preheating for probe / leveling (#23088)
commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date: Sun Nov 7 07:16:18 2021 +0300
๐ฉน Fix M503 report (#23084)
commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date: Sun Nov 7 11:53:36 2021 +0800
๐ป Preliminary fix for Max31865 SPI (#22682)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date: Sun Nov 7 04:48:00 2021 +0100
๐ Fix JyersUI scrolling filename, etc. (#23082)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Nov 7 15:27:53 2021 +1300
๐ Fix DGUS Reloaded status message (#23090)
commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Nov 4 12:18:23 2021 -0500
๐ป Get/clear reset source earlier
Followup to #23075
commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <skruppy@onmars.eu>
Date: Thu Nov 4 18:11:57 2021 +0100
๐ Prevent AVR watchdogpile (#23075)
commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Nov 4 18:04:04 2021 +0100
๐ Fix TFT backlight [STM32] (#23062)
commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 4 18:54:38 2021 +0800
๐ Fix Octopus-Pro Max31865 / SPI (#23072)
commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Nov 4 17:28:42 2021 +0700
๐จ Fix IntelliSense / PIO conflicts (#23058)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Nov 4 14:04:06 2021 +1300
๐ 'STOP' auto-assign, some Chitu V9 pins (#22889)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:06:31 2021 -0500
๐จ Script 'mfprep' finds pending commits
commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:02:21 2021 -0500
๐จ Update git helper scripts
commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 2 01:28:00 2021 -0500
๐จ Support ABM in mf scripts
commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 23:15:29 2021 -0700
๐ Default NeoPixel pin for MKS Robin E3/E3D (#23060)
commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date: Tue Nov 2 01:47:16 2021 -0400
โ๏ธ Use pwm_set_duty over analogWrite to set PWM (#23048)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 22:43:40 2021 -0700
๐ง Endstop / DIAG homing conflict warning (#23050)
commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 21:23:54 2021 -0700
โจ Allow Low EJERK with LA, optional (#23054)
commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 20:23:24 2021 -0700
โจ Artillery Ruby (STM32F401RCT6) (#23029)
commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Nov 1 23:03:50 2021 +0000
๐ธ More flexible Probe Temperature Compensation (#23033)
commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:17:16 2021 -0500
๐ Tweak EXP comments
commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 23:43:19 2021 -0500
๐จ Help for GDB remote debugging
commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 22:43:02 2021 -0500
๐ฉน Fix linker error (transfer_port_index)
commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 04:16:37 2021 -0500
๐ Update Ender-3 V2 config path
MarlinFirmware/Configurations#600
commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 01:39:33 2021 -0500
๐จ Adjust Ender-3 V2 DWIN options
commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <aalku7@gmail.com>
Date: Sat Oct 30 07:17:20 2021 +0200
โจ Shutdown Host Action (#22908)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Oct 29 20:46:55 2021 -0500
โจ "Rutilea" ESP32 board (#22880)
commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 29 20:42:52 2021 -0500
๐ง Configuration version 02000903
commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:36:06 2021 -0500
๐จ Standard 'cooldown' method
commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 20:01:44 2021 -0500
๐จ Standard material presets behavior
commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:15:58 2021 -0500
๐จ Define HAS_PREHEAT conditional
commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Sat Oct 30 00:49:12 2021 +0200
๐ Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)
commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Oct 28 19:22:35 2021 -0500
๐ Fix EZBoard V2 board name
commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Thu Oct 28 03:26:05 2021 -0700
๐ Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 21:54:43 2021 -0500
๐จ Apply HAS_MULTI_HOTEND conditional
commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <zlopi.ru@gmail.com>
Date: Wed Oct 27 23:10:46 2021 +0300
๐ธ Scroll long filename on MKS TFT (#23031)
commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Oct 28 09:06:06 2021 +1300
๐ฉน Retain LCD pins with motor expansion (#23024)
commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <hibs@circuitco.de>
Date: Wed Oct 27 21:00:02 2021 +0100
๐ Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)
commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Wed Oct 27 21:58:32 2021 +0200
๐ Fix E3V2 (CrealityUI) position display (#23023)
Followup to #23005, #22778
commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 19:36:16 2021 -0500
๐ธ Tweaks to UBL G29 Q
commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <spam@bergermeier.info>
Date: Wed Oct 27 01:05:34 2021 +0200
๐ Fix AUTOTEMP bug (thermal runaway) (#23025)
Regression from 9823a37
commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Oct 25 06:33:40 2021 +0100
๐ Add USE_TEMP_EXT_COMPENSATION options (#23007)
commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Oct 24 23:33:27 2021 -0500
๐ง Fewer alerts about Z_SAFE_HOMING
commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Fri Oct 22 18:16:07 2021 +0200
๐ Fix SHOW_REMAINING_TIME option for JyersUI (#22999)
commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Fri Oct 22 08:52:31 2021 -0700
โจ BigTreeTech TFT35 SPI V1.0 (#22986)
commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Oct 19 06:05:23 2021 -0500
๐ฉน Fix pragma ignored for older GCC (#22978)
commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Oct 19 05:59:48 2021 -0500
๐จ Refactor MOSFET pins layout (#22983)
commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 19 05:52:41 2021 -0500
๐จ Pragma GCC cleanup
commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <jason.inet@gmail.com>
Date: Mon Oct 18 01:11:16 2021 -0700
๐ Fix max chamber fan speed (#22977)
commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Oct 18 00:57:54 2021 -0700
๐ Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)
commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Oct 18 20:54:20 2021 +1300
๐ Fix MMU1 compile (#22965)
commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Oct 18 02:40:47 2021 -0500
๐จ Suppress type warning (#22976)
commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 22:10:08 2021 -0500
๐จ Add MKS UI goto_previous_ui
commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 20:24:41 2021 -0500
๐ธ Tweak MKS UI G-code console
commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 18:11:16 2021 -0500
๐จ Fix up MKS UI defines
commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 15 00:24:08 2021 -0500
๐จ Refactor Host Actions as singleton
commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Fri Oct 15 14:38:03 2021 +1300
๐ง Add, update TFT sanity checks (#22928)
commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 23:19:05 2021 -0400
โก๏ธ Formbot ST7920 delays, intentional X2 pins (#22915)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <svetotled@gmail.com>
Date: Wed Oct 13 05:45:00 2021 +0300
๐จ Update MKS UI for no bed, extruder (#22938)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 19:40:56 2021 -0400
๐ Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)
commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Oct 11 23:42:29 2021 +0100
โจ M261 S I2C output format (#22890)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Oct 10 01:05:24 2021 +0200
๐ Queue string followup (#22900)
commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date: Sat Oct 9 15:09:50 2021 -0700
๐ LCD string followup (#22892)
commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:19:28 2021 -0500
๐ Followup to F() in config_line
Followup to 1dafd1887e
commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Mon Oct 4 19:50:14 2021 -0500
๐ ExtUI F() followups
Followup to 12b5d997a2
commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 20:15:52 2021 -0500
๐จ Apply F() to kill / sendinfoscreen
commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 19:28:29 2021 -0500
๐จ Apply F() to MKS UI errors, assets
commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:46:42 2021 -0500
๐จ Apply F() to various reports
commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:40:01 2021 -0500
๐จ Apply F() to G-code report header
commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 23:52:41 2021 -0500
๐จ Apply F() to UTF-8/MMU2 string put
commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 22:11:48 2021 -0500
๐จ Apply F() to some ExtUI functions
commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:55:08 2021 -0500
๐จ Apply F() to Host Actions strings
commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 17:05:11 2021 -0500
๐จ Apply F() to status message
commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:03:07 2021 -0500
๐จ Apply F() to serial macros
commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 21:11:31 2021 -0500
๐จ Apply F() to G-code suite and queue
commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:43:52 2021 -0500
๐จ Apply F() to G-code subcommands
commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:22:37 2021 -0500
๐จ Update F string declarations
commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Oct 4 00:24:41 2021 -0500
๐จ Axis name string interpolation, with examples (#22879)
commit ecb08b15bed770972a263abb600207a0db8791d1
Merge: 798d12c2af 854ce63358
Author: Sergey <sergey@terentiev.me>
Date: Wed Dec 22 11:58:28 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 19 05:33:21 2021 +0700
๐ Fix loud_kill heater disable (#23314)
commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date: Tue Nov 23 22:30:13 2021 +0100
๐ Fix homing current for extra axes (#23152)
Followup to #19112
commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Sat Oct 9 19:13:19 2021 -0400
๐ Fix IDEX Duplication Mode Positioning (#22914)
Fixing #22538
commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Nov 24 04:19:32 2021 +0700
๐ Fix serial_data_available (#23160)
3 years ago
|
|
|
FSTR_P stat;
|
|
|
|
switch (test_result) {
|
|
|
|
default:
|
Squashed commit of the following:
commit 4b9fce2e8588f5dea0658e93fa0260830a851874
Merge: ecb08b15be e17d710c5c
Author: Sergey <sergey@terentiev.me>
Date: Mon Dec 27 16:47:22 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit e17d710c5c4c96e069f64854e3fcdb77abcf90e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 22:13:20 2021 -0600
๐ Marlin 2.0.9.3
commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Dec 25 19:41:01 2021 -0800
๐ Fix MKS Robin E3 NeoPixel pin default (#23350)
commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date: Sun Dec 26 10:12:20 2021 +0800
๐ Fix open for bin rename (#23351)
commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 03:27:45 2021 -0600
๐ง Move MOTHERBOARD closer to top
commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date: Sat Dec 25 05:57:07 2021 -0300
โจ Per-axis TMC hold multiplier (#23345)
commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Fri Dec 24 14:03:32 2021 +0800
โจ MKS TinyBee board support (#23340)
Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>
commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 23 15:19:39 2021 +0700
๐ง Group FAST_PWM_FAN.options (#23331)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Dec 21 23:09:55 2021 -0500
โจ BLTouch High Speed mode runtime configuration (#22916, #23337)
Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 15:44:04 2021 +1300
โจ Option to reset EEPROM on first run (#23276)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date: Sat Dec 18 18:58:46 2021 -0700
โจ Creality3D V4.2.3 / Ender-2 Pro board (#23307)
commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date: Tue Dec 14 07:22:06 2021 +0100
โจ Configurations embed and retrieve (#21321, #23303)
commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Wed Dec 8 20:55:09 2021 +0200
๐ Fix and improve MAX31865 (#23215)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Sat Dec 11 03:38:03 2021 +0800
โจ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)
commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date: Tue Dec 7 02:53:51 2021 +0100
โจ X Twist Compensation & Calibration (#23238)
commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date: Sun Dec 5 22:41:39 2021 +0100
๐ง Chamber Fan index option (#23262)
commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Dec 3 12:48:48 2021 -0600
๐๏ธ Fix Maple HAL/STM32F1 PWM (#23211)
commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Dec 3 19:31:48 2021 +0100
๐๏ธ Rework STM32 timer frequency protection (#23187)
commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 30 15:04:05 2021 -0600
๐ Fix STM32 FastPWM
commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Nov 27 18:33:32 2021 -0600
๐จ Rename HAL timer elements
commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date: Wed Nov 24 08:52:18 2021 +1100
โจ EasyThreeD ET4000+ board and UI (#23080)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date: Tue Nov 23 21:24:24 2021 +0000
โจ MarkForged YX kinematics (#23163)
commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sun Nov 21 11:25:06 2021 -0800
โจ BigTreeTech Mini 12864 V1.0 (#23130)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 21:01:53 2021 +0100
โจ Fan tachometer support (#23086, #23180, #23199)
Co-Authored-By: Scott Lahteine <github@thinkyhead.com>
commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 16 08:54:30 2021 -0600
๐ง SOUND_MENU_ITEM for E3V2
commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:31:35 2021 -0500
๐ธ Expose sub-options for E3V2 Enhanced (#23099)
commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Wed Nov 17 09:33:42 2021 -0800
๐ Overridable probe-related pins (#23107)
commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Wed Nov 10 23:56:10 2021 +0800
โจ Support for BIQU B1-SE-Plus strain gauge probe (#23101)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 23:47:52 2021 -0600
๐จ Configurable firmware bin filename
Configuration.h > FIRMWARE_BIN
commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 20:59:28 2021 -0600
๐จ Ignore more generated files
commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 01:46:51 2021 -0600
๐ง Sanity check MMU2_MENUS
commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date: Fri Dec 24 06:57:20 2021 +0100
๐ Fix Robin Nano v3 filament runout pins (#23344)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date: Thu Dec 23 10:47:52 2021 +0100
๐ธ Show mm'ss during first hour (#23335)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Dec 15 07:51:19 2021 +0700
๐ธ Change "SD" to "Media" or "SD/FD" (#23297)
commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 13:48:38 2021 +1300
๐ Fix Chitu Z_STOP_PIN (#23330)
commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Dec 23 07:49:15 2021 +0100
๐ฉน Fix settings G21 report (#23338)
commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Dec 21 01:26:31 2021 -0600
๐๏ธ FAST_PWM_FAN default 1KHz base freq. (#23326)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 19:25:28 2021 +1300
๐ Fix LCD_BED_LEVELING compile (#23298)
commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date: Mon Dec 20 09:44:43 2021 +0100
๐งโ๐ป Option allowing > 127 Neopixels (#23322)
commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:33:49 2021 -0500
๐จ Update SKR V2 pins
commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Dec 14 01:47:57 2021 +0100
๐ธ Use M600 for disabled MMU (#21865)
commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Tue Dec 14 01:41:21 2021 +0100
๐ Fix TFT_COLOR_UI Release Media issue (#23123)
commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Sat Dec 18 01:31:10 2021 +0200
๐ง Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)
commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 18 17:38:29 2021 -0600
๐ Fix a config comment
commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:18:24 2021 +1300
โจ M115 flag EXTENDED_M20 (#22941)
commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:13:34 2021 +1300
โ๏ธ Clean up duplicate defs (#23182)
commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Tue Dec 14 07:11:52 2021 +0700
๐ฉน Init fan speed at boot (#23181)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 13 16:15:46 2021 -0600
๐ง Fix unknown board test
commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Dec 12 16:16:40 2021 -0600
๐ฉน SD abort requires open file
See #22566
commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 12 11:06:45 2021 +1300
๐ Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)
commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date: Wed Dec 8 23:18:04 2021 -0800
Fix Endstops::report_states (#23280)
Fix regression 4d45fdf0eb
commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Dec 8 18:36:08 2021 -0600
๐จ Misc. probe / endstop cleanup
commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Thu Dec 9 03:37:45 2021 +0800
๐ Fix MKS LVGL UI retraction (#23267)
commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 02:15:31 2021 +0700
๐ฉน Coerce pin_t in set_pwm_duty macros (#23273)
commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date: Wed Dec 8 11:10:37 2021 -0800
๐ Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 01:57:50 2021 +0700
๐ธ Onboard SD for SKR 2.0 / SKR PRO (#23274)
commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Dec 8 12:40:23 2021 -0600
๐จ Rename MAX31865 elements
commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 6 20:18:50 2021 -0600
โ๏ธ MAX31856 => MAX31865
commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Dec 6 15:52:18 2021 -0600
๐ฉน Fix non-PWM cutter compile (#23169)
commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Dec 6 21:40:18 2021 +0000
๐ Fix TWIBus Wire.begin call (#23183)
commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date: Sun Dec 5 22:18:02 2021 +0000
๐ HAL_reboot for native HAL (#23246)
commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date: Sun Dec 5 23:16:23 2021 +0100
๐ Fix env:chitu_f103 (#23225)
commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Dec 6 10:42:56 2021 +1300
๐ More Longer3D LKx Pro serial tests (#23260)
commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Sat Dec 4 23:44:10 2021 +0000
โจ M3426 to read i2c MCP3426 ADC (#23184)
commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Dec 4 17:17:10 2021 -0600
๐ง Cutter pins for SKR 2.0
commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 5 05:14:19 2021 +0700
๐ธ Park nozzle on "loud kill" (#23172)
commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 5 11:10:29 2021 +1300
โจ BigTree SKR 2 with F429 (#23177)
commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sat Dec 4 09:48:54 2021 +1300
๐ Fix TIMER_TONE for ZM3E4 (#23212)
commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date: Tue Nov 30 21:46:48 2021 +0100
๐ฉน Assume 4K EEPROM for RUMBA32 BTT (#23205)
commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 30 13:03:31 2021 -0600
๐ Fix STM32 FastPWM
commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 27 14:59:32 2021 -0800
โ๏ธ Fix Unicode (#23186)
commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date: Sat Nov 27 13:54:39 2021 -0800
๐ฉน Handle nullptr in CardReader::printLongPath (#23197)
commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date: Sat Nov 27 17:58:05 2021 -0500
๐ฉน UM2 extruder cooling fan on PJ6 (#23194)
commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date: Sun Nov 28 03:26:53 2021 +0800
โจ FYSETC Spider v2.2 (#23208)
commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 22:33:33 2021 +0100
๐ฉน Fix include path (#23150)
commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 23 13:54:31 2021 -0800
๐ Biqu BX temporary framework workaround (#23131)
commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Nov 23 14:05:50 2021 -0600
๐ Fix STM32 set_pwm_duty (#23125)
commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Nov 21 20:13:01 2021 +0100
๐ Fix TFT backlight sleep/wake (#23153)
commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sat Nov 20 02:44:53 2021 +0100
โก๏ธ Reduce calls to set fan PWM (#23149)
commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Nov 17 13:01:44 2021 -0600
๐จ Misc formatting
commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 18 01:35:28 2021 +0800
๐ Init PROBE_ENABLE_PIN (#23133)
commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date: Wed Nov 17 12:09:01 2021 -0500
๐จ Fix misspelling (#23137)
commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date: Wed Nov 17 18:07:11 2021 +0100
๐๏ธ Planner::busy() (#23145)
commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 14:06:36 2021 -0600
๐ Fix fast PWM WGM code
Followup to #23102
commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 12:49:25 2021 -0600
๐จ Bring Makefile up to date
commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Tue Nov 16 19:32:43 2021 +0300
๐จ Ignore sim flashdrive file (#23129)
commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date: Tue Nov 16 16:24:53 2021 +0100
๐ Fix G33, Delta radii, reachable (#22795)
commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date: Mon Nov 15 07:46:34 2021 +0300
๐ธ LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)
commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 14 17:19:57 2021 -0600
๐ Fix SENSORLESS_HOMING for 6-axis
commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Mon Nov 15 00:15:07 2021 +0300
๐ธ Simplify touchscreen calibration for SimUI (#23124)
commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:55:20 2021 -0500
๐ธ Fix up E3V2 Enhanced (#23100)
commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 22 13:21:26 2021 -0500
๐จ Misc. issue review patches
commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Sun Nov 14 05:55:31 2021 -0600
โก๏ธ Controller Fan software PWM (etc.) (#23102)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Nov 12 21:26:19 2021 +0100
๐จ MPX ARM Mini pins cleanup (#23113)
commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Nov 12 12:14:28 2021 -0600
๐ [LCP1768] Init PWM in set_pwm_duty (#23110)
commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date: Fri Nov 12 15:57:24 2021 +0100
๐ฉน Fix RGB case light compile (#23108)
commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date: Wed Nov 10 23:58:20 2021 +0800
๐ Fix FYSETC Cheetah 2.0 pins for production (#23104)
commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <github@minims.fr>
Date: Sun Oct 10 01:10:21 2021 +0200
๐ฉน Adjust GTR 1.0 ST7920 display delay (#22904)
commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 00:57:30 2021 -0600
fix breaks in F() resolution
commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:35:31 2021 -0500
๐จ Port libsdl2_net required for macOS simulator
commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 9 08:30:02 2021 -0800
โก๏ธ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)
commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 7 01:11:51 2021 -0600
๐จ Misc. code cleanup
commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date: Sun Oct 3 06:12:51 2021 +0300
โจ WYH L12864 LCD (Alfawise Ex8) (#22863)
commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 6 23:09:15 2021 -0700
๐ธ Indicate Preheating for probe / leveling (#23088)
commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date: Sun Nov 7 07:16:18 2021 +0300
๐ฉน Fix M503 report (#23084)
commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date: Sun Nov 7 11:53:36 2021 +0800
๐ป Preliminary fix for Max31865 SPI (#22682)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date: Sun Nov 7 04:48:00 2021 +0100
๐ Fix JyersUI scrolling filename, etc. (#23082)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Nov 7 15:27:53 2021 +1300
๐ Fix DGUS Reloaded status message (#23090)
commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Nov 4 12:18:23 2021 -0500
๐ป Get/clear reset source earlier
Followup to #23075
commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <skruppy@onmars.eu>
Date: Thu Nov 4 18:11:57 2021 +0100
๐ Prevent AVR watchdogpile (#23075)
commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Nov 4 18:04:04 2021 +0100
๐ Fix TFT backlight [STM32] (#23062)
commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 4 18:54:38 2021 +0800
๐ Fix Octopus-Pro Max31865 / SPI (#23072)
commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Nov 4 17:28:42 2021 +0700
๐จ Fix IntelliSense / PIO conflicts (#23058)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Nov 4 14:04:06 2021 +1300
๐ 'STOP' auto-assign, some Chitu V9 pins (#22889)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:06:31 2021 -0500
๐จ Script 'mfprep' finds pending commits
commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:02:21 2021 -0500
๐จ Update git helper scripts
commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 2 01:28:00 2021 -0500
๐จ Support ABM in mf scripts
commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 23:15:29 2021 -0700
๐ Default NeoPixel pin for MKS Robin E3/E3D (#23060)
commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date: Tue Nov 2 01:47:16 2021 -0400
โ๏ธ Use pwm_set_duty over analogWrite to set PWM (#23048)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 22:43:40 2021 -0700
๐ง Endstop / DIAG homing conflict warning (#23050)
commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 21:23:54 2021 -0700
โจ Allow Low EJERK with LA, optional (#23054)
commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 20:23:24 2021 -0700
โจ Artillery Ruby (STM32F401RCT6) (#23029)
commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Nov 1 23:03:50 2021 +0000
๐ธ More flexible Probe Temperature Compensation (#23033)
commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:17:16 2021 -0500
๐ Tweak EXP comments
commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 23:43:19 2021 -0500
๐จ Help for GDB remote debugging
commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 22:43:02 2021 -0500
๐ฉน Fix linker error (transfer_port_index)
commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 04:16:37 2021 -0500
๐ Update Ender-3 V2 config path
MarlinFirmware/Configurations#600
commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 01:39:33 2021 -0500
๐จ Adjust Ender-3 V2 DWIN options
commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <aalku7@gmail.com>
Date: Sat Oct 30 07:17:20 2021 +0200
โจ Shutdown Host Action (#22908)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Oct 29 20:46:55 2021 -0500
โจ "Rutilea" ESP32 board (#22880)
commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 29 20:42:52 2021 -0500
๐ง Configuration version 02000903
commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:36:06 2021 -0500
๐จ Standard 'cooldown' method
commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 20:01:44 2021 -0500
๐จ Standard material presets behavior
commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:15:58 2021 -0500
๐จ Define HAS_PREHEAT conditional
commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Sat Oct 30 00:49:12 2021 +0200
๐ Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)
commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Oct 28 19:22:35 2021 -0500
๐ Fix EZBoard V2 board name
commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Thu Oct 28 03:26:05 2021 -0700
๐ Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 21:54:43 2021 -0500
๐จ Apply HAS_MULTI_HOTEND conditional
commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <zlopi.ru@gmail.com>
Date: Wed Oct 27 23:10:46 2021 +0300
๐ธ Scroll long filename on MKS TFT (#23031)
commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Oct 28 09:06:06 2021 +1300
๐ฉน Retain LCD pins with motor expansion (#23024)
commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <hibs@circuitco.de>
Date: Wed Oct 27 21:00:02 2021 +0100
๐ Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)
commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Wed Oct 27 21:58:32 2021 +0200
๐ Fix E3V2 (CrealityUI) position display (#23023)
Followup to #23005, #22778
commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 19:36:16 2021 -0500
๐ธ Tweaks to UBL G29 Q
commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <spam@bergermeier.info>
Date: Wed Oct 27 01:05:34 2021 +0200
๐ Fix AUTOTEMP bug (thermal runaway) (#23025)
Regression from 9823a37
commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Oct 25 06:33:40 2021 +0100
๐ Add USE_TEMP_EXT_COMPENSATION options (#23007)
commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Oct 24 23:33:27 2021 -0500
๐ง Fewer alerts about Z_SAFE_HOMING
commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Fri Oct 22 18:16:07 2021 +0200
๐ Fix SHOW_REMAINING_TIME option for JyersUI (#22999)
commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Fri Oct 22 08:52:31 2021 -0700
โจ BigTreeTech TFT35 SPI V1.0 (#22986)
commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Oct 19 06:05:23 2021 -0500
๐ฉน Fix pragma ignored for older GCC (#22978)
commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Oct 19 05:59:48 2021 -0500
๐จ Refactor MOSFET pins layout (#22983)
commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 19 05:52:41 2021 -0500
๐จ Pragma GCC cleanup
commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <jason.inet@gmail.com>
Date: Mon Oct 18 01:11:16 2021 -0700
๐ Fix max chamber fan speed (#22977)
commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Oct 18 00:57:54 2021 -0700
๐ Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)
commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Oct 18 20:54:20 2021 +1300
๐ Fix MMU1 compile (#22965)
commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Oct 18 02:40:47 2021 -0500
๐จ Suppress type warning (#22976)
commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 22:10:08 2021 -0500
๐จ Add MKS UI goto_previous_ui
commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 20:24:41 2021 -0500
๐ธ Tweak MKS UI G-code console
commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 18:11:16 2021 -0500
๐จ Fix up MKS UI defines
commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 15 00:24:08 2021 -0500
๐จ Refactor Host Actions as singleton
commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Fri Oct 15 14:38:03 2021 +1300
๐ง Add, update TFT sanity checks (#22928)
commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 23:19:05 2021 -0400
โก๏ธ Formbot ST7920 delays, intentional X2 pins (#22915)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <svetotled@gmail.com>
Date: Wed Oct 13 05:45:00 2021 +0300
๐จ Update MKS UI for no bed, extruder (#22938)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 19:40:56 2021 -0400
๐ Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)
commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Oct 11 23:42:29 2021 +0100
โจ M261 S I2C output format (#22890)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Oct 10 01:05:24 2021 +0200
๐ Queue string followup (#22900)
commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date: Sat Oct 9 15:09:50 2021 -0700
๐ LCD string followup (#22892)
commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:19:28 2021 -0500
๐ Followup to F() in config_line
Followup to 1dafd1887e
commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Mon Oct 4 19:50:14 2021 -0500
๐ ExtUI F() followups
Followup to 12b5d997a2
commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 20:15:52 2021 -0500
๐จ Apply F() to kill / sendinfoscreen
commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 19:28:29 2021 -0500
๐จ Apply F() to MKS UI errors, assets
commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:46:42 2021 -0500
๐จ Apply F() to various reports
commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:40:01 2021 -0500
๐จ Apply F() to G-code report header
commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 23:52:41 2021 -0500
๐จ Apply F() to UTF-8/MMU2 string put
commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 22:11:48 2021 -0500
๐จ Apply F() to some ExtUI functions
commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:55:08 2021 -0500
๐จ Apply F() to Host Actions strings
commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 17:05:11 2021 -0500
๐จ Apply F() to status message
commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:03:07 2021 -0500
๐จ Apply F() to serial macros
commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 21:11:31 2021 -0500
๐จ Apply F() to G-code suite and queue
commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:43:52 2021 -0500
๐จ Apply F() to G-code subcommands
commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:22:37 2021 -0500
๐จ Update F string declarations
commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Oct 4 00:24:41 2021 -0500
๐จ Axis name string interpolation, with examples (#22879)
commit ecb08b15bed770972a263abb600207a0db8791d1
Merge: 798d12c2af 854ce63358
Author: Sergey <sergey@terentiev.me>
Date: Wed Dec 22 11:58:28 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 19 05:33:21 2021 +0700
๐ Fix loud_kill heater disable (#23314)
commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date: Tue Nov 23 22:30:13 2021 +0100
๐ Fix homing current for extra axes (#23152)
Followup to #19112
commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Sat Oct 9 19:13:19 2021 -0400
๐ Fix IDEX Duplication Mode Positioning (#22914)
Fixing #22538
commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Nov 24 04:19:32 2021 +0700
๐ Fix serial_data_available (#23160)
3 years ago
|
|
|
case 0: stat = F("OK"); break;
|
|
|
|
case 1: stat = F("HIGH"); break;
|
|
|
|
case 2: stat = F("LOW"); break;
|
|
|
|
}
|
Squashed commit of the following:
commit 4b9fce2e8588f5dea0658e93fa0260830a851874
Merge: ecb08b15be e17d710c5c
Author: Sergey <sergey@terentiev.me>
Date: Mon Dec 27 16:47:22 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit e17d710c5c4c96e069f64854e3fcdb77abcf90e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 22:13:20 2021 -0600
๐ Marlin 2.0.9.3
commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Dec 25 19:41:01 2021 -0800
๐ Fix MKS Robin E3 NeoPixel pin default (#23350)
commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date: Sun Dec 26 10:12:20 2021 +0800
๐ Fix open for bin rename (#23351)
commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 03:27:45 2021 -0600
๐ง Move MOTHERBOARD closer to top
commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date: Sat Dec 25 05:57:07 2021 -0300
โจ Per-axis TMC hold multiplier (#23345)
commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Fri Dec 24 14:03:32 2021 +0800
โจ MKS TinyBee board support (#23340)
Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>
commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 23 15:19:39 2021 +0700
๐ง Group FAST_PWM_FAN.options (#23331)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Dec 21 23:09:55 2021 -0500
โจ BLTouch High Speed mode runtime configuration (#22916, #23337)
Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 15:44:04 2021 +1300
โจ Option to reset EEPROM on first run (#23276)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date: Sat Dec 18 18:58:46 2021 -0700
โจ Creality3D V4.2.3 / Ender-2 Pro board (#23307)
commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date: Tue Dec 14 07:22:06 2021 +0100
โจ Configurations embed and retrieve (#21321, #23303)
commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Wed Dec 8 20:55:09 2021 +0200
๐ Fix and improve MAX31865 (#23215)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Sat Dec 11 03:38:03 2021 +0800
โจ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)
commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date: Tue Dec 7 02:53:51 2021 +0100
โจ X Twist Compensation & Calibration (#23238)
commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date: Sun Dec 5 22:41:39 2021 +0100
๐ง Chamber Fan index option (#23262)
commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Dec 3 12:48:48 2021 -0600
๐๏ธ Fix Maple HAL/STM32F1 PWM (#23211)
commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Dec 3 19:31:48 2021 +0100
๐๏ธ Rework STM32 timer frequency protection (#23187)
commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 30 15:04:05 2021 -0600
๐ Fix STM32 FastPWM
commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Nov 27 18:33:32 2021 -0600
๐จ Rename HAL timer elements
commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date: Wed Nov 24 08:52:18 2021 +1100
โจ EasyThreeD ET4000+ board and UI (#23080)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date: Tue Nov 23 21:24:24 2021 +0000
โจ MarkForged YX kinematics (#23163)
commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sun Nov 21 11:25:06 2021 -0800
โจ BigTreeTech Mini 12864 V1.0 (#23130)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 21:01:53 2021 +0100
โจ Fan tachometer support (#23086, #23180, #23199)
Co-Authored-By: Scott Lahteine <github@thinkyhead.com>
commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 16 08:54:30 2021 -0600
๐ง SOUND_MENU_ITEM for E3V2
commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:31:35 2021 -0500
๐ธ Expose sub-options for E3V2 Enhanced (#23099)
commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Wed Nov 17 09:33:42 2021 -0800
๐ Overridable probe-related pins (#23107)
commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Wed Nov 10 23:56:10 2021 +0800
โจ Support for BIQU B1-SE-Plus strain gauge probe (#23101)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 23:47:52 2021 -0600
๐จ Configurable firmware bin filename
Configuration.h > FIRMWARE_BIN
commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 20:59:28 2021 -0600
๐จ Ignore more generated files
commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 01:46:51 2021 -0600
๐ง Sanity check MMU2_MENUS
commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date: Fri Dec 24 06:57:20 2021 +0100
๐ Fix Robin Nano v3 filament runout pins (#23344)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date: Thu Dec 23 10:47:52 2021 +0100
๐ธ Show mm'ss during first hour (#23335)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Dec 15 07:51:19 2021 +0700
๐ธ Change "SD" to "Media" or "SD/FD" (#23297)
commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 13:48:38 2021 +1300
๐ Fix Chitu Z_STOP_PIN (#23330)
commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Dec 23 07:49:15 2021 +0100
๐ฉน Fix settings G21 report (#23338)
commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Dec 21 01:26:31 2021 -0600
๐๏ธ FAST_PWM_FAN default 1KHz base freq. (#23326)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 19:25:28 2021 +1300
๐ Fix LCD_BED_LEVELING compile (#23298)
commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date: Mon Dec 20 09:44:43 2021 +0100
๐งโ๐ป Option allowing > 127 Neopixels (#23322)
commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:33:49 2021 -0500
๐จ Update SKR V2 pins
commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Dec 14 01:47:57 2021 +0100
๐ธ Use M600 for disabled MMU (#21865)
commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Tue Dec 14 01:41:21 2021 +0100
๐ Fix TFT_COLOR_UI Release Media issue (#23123)
commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Sat Dec 18 01:31:10 2021 +0200
๐ง Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)
commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 18 17:38:29 2021 -0600
๐ Fix a config comment
commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:18:24 2021 +1300
โจ M115 flag EXTENDED_M20 (#22941)
commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:13:34 2021 +1300
โ๏ธ Clean up duplicate defs (#23182)
commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Tue Dec 14 07:11:52 2021 +0700
๐ฉน Init fan speed at boot (#23181)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 13 16:15:46 2021 -0600
๐ง Fix unknown board test
commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Dec 12 16:16:40 2021 -0600
๐ฉน SD abort requires open file
See #22566
commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 12 11:06:45 2021 +1300
๐ Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)
commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date: Wed Dec 8 23:18:04 2021 -0800
Fix Endstops::report_states (#23280)
Fix regression 4d45fdf0eb
commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Dec 8 18:36:08 2021 -0600
๐จ Misc. probe / endstop cleanup
commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Thu Dec 9 03:37:45 2021 +0800
๐ Fix MKS LVGL UI retraction (#23267)
commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 02:15:31 2021 +0700
๐ฉน Coerce pin_t in set_pwm_duty macros (#23273)
commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date: Wed Dec 8 11:10:37 2021 -0800
๐ Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 01:57:50 2021 +0700
๐ธ Onboard SD for SKR 2.0 / SKR PRO (#23274)
commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Dec 8 12:40:23 2021 -0600
๐จ Rename MAX31865 elements
commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 6 20:18:50 2021 -0600
โ๏ธ MAX31856 => MAX31865
commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Dec 6 15:52:18 2021 -0600
๐ฉน Fix non-PWM cutter compile (#23169)
commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Dec 6 21:40:18 2021 +0000
๐ Fix TWIBus Wire.begin call (#23183)
commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date: Sun Dec 5 22:18:02 2021 +0000
๐ HAL_reboot for native HAL (#23246)
commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date: Sun Dec 5 23:16:23 2021 +0100
๐ Fix env:chitu_f103 (#23225)
commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Dec 6 10:42:56 2021 +1300
๐ More Longer3D LKx Pro serial tests (#23260)
commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Sat Dec 4 23:44:10 2021 +0000
โจ M3426 to read i2c MCP3426 ADC (#23184)
commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Dec 4 17:17:10 2021 -0600
๐ง Cutter pins for SKR 2.0
commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 5 05:14:19 2021 +0700
๐ธ Park nozzle on "loud kill" (#23172)
commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 5 11:10:29 2021 +1300
โจ BigTree SKR 2 with F429 (#23177)
commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sat Dec 4 09:48:54 2021 +1300
๐ Fix TIMER_TONE for ZM3E4 (#23212)
commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date: Tue Nov 30 21:46:48 2021 +0100
๐ฉน Assume 4K EEPROM for RUMBA32 BTT (#23205)
commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 30 13:03:31 2021 -0600
๐ Fix STM32 FastPWM
commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 27 14:59:32 2021 -0800
โ๏ธ Fix Unicode (#23186)
commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date: Sat Nov 27 13:54:39 2021 -0800
๐ฉน Handle nullptr in CardReader::printLongPath (#23197)
commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date: Sat Nov 27 17:58:05 2021 -0500
๐ฉน UM2 extruder cooling fan on PJ6 (#23194)
commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date: Sun Nov 28 03:26:53 2021 +0800
โจ FYSETC Spider v2.2 (#23208)
commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 22:33:33 2021 +0100
๐ฉน Fix include path (#23150)
commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 23 13:54:31 2021 -0800
๐ Biqu BX temporary framework workaround (#23131)
commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Nov 23 14:05:50 2021 -0600
๐ Fix STM32 set_pwm_duty (#23125)
commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Nov 21 20:13:01 2021 +0100
๐ Fix TFT backlight sleep/wake (#23153)
commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sat Nov 20 02:44:53 2021 +0100
โก๏ธ Reduce calls to set fan PWM (#23149)
commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Nov 17 13:01:44 2021 -0600
๐จ Misc formatting
commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 18 01:35:28 2021 +0800
๐ Init PROBE_ENABLE_PIN (#23133)
commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date: Wed Nov 17 12:09:01 2021 -0500
๐จ Fix misspelling (#23137)
commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date: Wed Nov 17 18:07:11 2021 +0100
๐๏ธ Planner::busy() (#23145)
commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 14:06:36 2021 -0600
๐ Fix fast PWM WGM code
Followup to #23102
commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 12:49:25 2021 -0600
๐จ Bring Makefile up to date
commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Tue Nov 16 19:32:43 2021 +0300
๐จ Ignore sim flashdrive file (#23129)
commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date: Tue Nov 16 16:24:53 2021 +0100
๐ Fix G33, Delta radii, reachable (#22795)
commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date: Mon Nov 15 07:46:34 2021 +0300
๐ธ LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)
commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 14 17:19:57 2021 -0600
๐ Fix SENSORLESS_HOMING for 6-axis
commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Mon Nov 15 00:15:07 2021 +0300
๐ธ Simplify touchscreen calibration for SimUI (#23124)
commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:55:20 2021 -0500
๐ธ Fix up E3V2 Enhanced (#23100)
commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 22 13:21:26 2021 -0500
๐จ Misc. issue review patches
commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Sun Nov 14 05:55:31 2021 -0600
โก๏ธ Controller Fan software PWM (etc.) (#23102)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Nov 12 21:26:19 2021 +0100
๐จ MPX ARM Mini pins cleanup (#23113)
commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Nov 12 12:14:28 2021 -0600
๐ [LCP1768] Init PWM in set_pwm_duty (#23110)
commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date: Fri Nov 12 15:57:24 2021 +0100
๐ฉน Fix RGB case light compile (#23108)
commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date: Wed Nov 10 23:58:20 2021 +0800
๐ Fix FYSETC Cheetah 2.0 pins for production (#23104)
commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <github@minims.fr>
Date: Sun Oct 10 01:10:21 2021 +0200
๐ฉน Adjust GTR 1.0 ST7920 display delay (#22904)
commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 00:57:30 2021 -0600
fix breaks in F() resolution
commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:35:31 2021 -0500
๐จ Port libsdl2_net required for macOS simulator
commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 9 08:30:02 2021 -0800
โก๏ธ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)
commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 7 01:11:51 2021 -0600
๐จ Misc. code cleanup
commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date: Sun Oct 3 06:12:51 2021 +0300
โจ WYH L12864 LCD (Alfawise Ex8) (#22863)
commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 6 23:09:15 2021 -0700
๐ธ Indicate Preheating for probe / leveling (#23088)
commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date: Sun Nov 7 07:16:18 2021 +0300
๐ฉน Fix M503 report (#23084)
commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date: Sun Nov 7 11:53:36 2021 +0800
๐ป Preliminary fix for Max31865 SPI (#22682)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date: Sun Nov 7 04:48:00 2021 +0100
๐ Fix JyersUI scrolling filename, etc. (#23082)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Nov 7 15:27:53 2021 +1300
๐ Fix DGUS Reloaded status message (#23090)
commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Nov 4 12:18:23 2021 -0500
๐ป Get/clear reset source earlier
Followup to #23075
commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <skruppy@onmars.eu>
Date: Thu Nov 4 18:11:57 2021 +0100
๐ Prevent AVR watchdogpile (#23075)
commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Nov 4 18:04:04 2021 +0100
๐ Fix TFT backlight [STM32] (#23062)
commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 4 18:54:38 2021 +0800
๐ Fix Octopus-Pro Max31865 / SPI (#23072)
commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Nov 4 17:28:42 2021 +0700
๐จ Fix IntelliSense / PIO conflicts (#23058)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Nov 4 14:04:06 2021 +1300
๐ 'STOP' auto-assign, some Chitu V9 pins (#22889)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:06:31 2021 -0500
๐จ Script 'mfprep' finds pending commits
commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:02:21 2021 -0500
๐จ Update git helper scripts
commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 2 01:28:00 2021 -0500
๐จ Support ABM in mf scripts
commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 23:15:29 2021 -0700
๐ Default NeoPixel pin for MKS Robin E3/E3D (#23060)
commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date: Tue Nov 2 01:47:16 2021 -0400
โ๏ธ Use pwm_set_duty over analogWrite to set PWM (#23048)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 22:43:40 2021 -0700
๐ง Endstop / DIAG homing conflict warning (#23050)
commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 21:23:54 2021 -0700
โจ Allow Low EJERK with LA, optional (#23054)
commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 20:23:24 2021 -0700
โจ Artillery Ruby (STM32F401RCT6) (#23029)
commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Nov 1 23:03:50 2021 +0000
๐ธ More flexible Probe Temperature Compensation (#23033)
commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:17:16 2021 -0500
๐ Tweak EXP comments
commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 23:43:19 2021 -0500
๐จ Help for GDB remote debugging
commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 22:43:02 2021 -0500
๐ฉน Fix linker error (transfer_port_index)
commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 04:16:37 2021 -0500
๐ Update Ender-3 V2 config path
MarlinFirmware/Configurations#600
commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 01:39:33 2021 -0500
๐จ Adjust Ender-3 V2 DWIN options
commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <aalku7@gmail.com>
Date: Sat Oct 30 07:17:20 2021 +0200
โจ Shutdown Host Action (#22908)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Oct 29 20:46:55 2021 -0500
โจ "Rutilea" ESP32 board (#22880)
commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 29 20:42:52 2021 -0500
๐ง Configuration version 02000903
commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:36:06 2021 -0500
๐จ Standard 'cooldown' method
commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 20:01:44 2021 -0500
๐จ Standard material presets behavior
commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:15:58 2021 -0500
๐จ Define HAS_PREHEAT conditional
commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Sat Oct 30 00:49:12 2021 +0200
๐ Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)
commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Oct 28 19:22:35 2021 -0500
๐ Fix EZBoard V2 board name
commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Thu Oct 28 03:26:05 2021 -0700
๐ Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 21:54:43 2021 -0500
๐จ Apply HAS_MULTI_HOTEND conditional
commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <zlopi.ru@gmail.com>
Date: Wed Oct 27 23:10:46 2021 +0300
๐ธ Scroll long filename on MKS TFT (#23031)
commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Oct 28 09:06:06 2021 +1300
๐ฉน Retain LCD pins with motor expansion (#23024)
commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <hibs@circuitco.de>
Date: Wed Oct 27 21:00:02 2021 +0100
๐ Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)
commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Wed Oct 27 21:58:32 2021 +0200
๐ Fix E3V2 (CrealityUI) position display (#23023)
Followup to #23005, #22778
commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 19:36:16 2021 -0500
๐ธ Tweaks to UBL G29 Q
commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <spam@bergermeier.info>
Date: Wed Oct 27 01:05:34 2021 +0200
๐ Fix AUTOTEMP bug (thermal runaway) (#23025)
Regression from 9823a37
commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Oct 25 06:33:40 2021 +0100
๐ Add USE_TEMP_EXT_COMPENSATION options (#23007)
commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Oct 24 23:33:27 2021 -0500
๐ง Fewer alerts about Z_SAFE_HOMING
commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Fri Oct 22 18:16:07 2021 +0200
๐ Fix SHOW_REMAINING_TIME option for JyersUI (#22999)
commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Fri Oct 22 08:52:31 2021 -0700
โจ BigTreeTech TFT35 SPI V1.0 (#22986)
commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Oct 19 06:05:23 2021 -0500
๐ฉน Fix pragma ignored for older GCC (#22978)
commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Oct 19 05:59:48 2021 -0500
๐จ Refactor MOSFET pins layout (#22983)
commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 19 05:52:41 2021 -0500
๐จ Pragma GCC cleanup
commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <jason.inet@gmail.com>
Date: Mon Oct 18 01:11:16 2021 -0700
๐ Fix max chamber fan speed (#22977)
commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Oct 18 00:57:54 2021 -0700
๐ Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)
commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Oct 18 20:54:20 2021 +1300
๐ Fix MMU1 compile (#22965)
commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Oct 18 02:40:47 2021 -0500
๐จ Suppress type warning (#22976)
commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 22:10:08 2021 -0500
๐จ Add MKS UI goto_previous_ui
commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 20:24:41 2021 -0500
๐ธ Tweak MKS UI G-code console
commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 18:11:16 2021 -0500
๐จ Fix up MKS UI defines
commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 15 00:24:08 2021 -0500
๐จ Refactor Host Actions as singleton
commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Fri Oct 15 14:38:03 2021 +1300
๐ง Add, update TFT sanity checks (#22928)
commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 23:19:05 2021 -0400
โก๏ธ Formbot ST7920 delays, intentional X2 pins (#22915)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <svetotled@gmail.com>
Date: Wed Oct 13 05:45:00 2021 +0300
๐จ Update MKS UI for no bed, extruder (#22938)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 19:40:56 2021 -0400
๐ Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)
commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Oct 11 23:42:29 2021 +0100
โจ M261 S I2C output format (#22890)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Oct 10 01:05:24 2021 +0200
๐ Queue string followup (#22900)
commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date: Sat Oct 9 15:09:50 2021 -0700
๐ LCD string followup (#22892)
commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:19:28 2021 -0500
๐ Followup to F() in config_line
Followup to 1dafd1887e
commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Mon Oct 4 19:50:14 2021 -0500
๐ ExtUI F() followups
Followup to 12b5d997a2
commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 20:15:52 2021 -0500
๐จ Apply F() to kill / sendinfoscreen
commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 19:28:29 2021 -0500
๐จ Apply F() to MKS UI errors, assets
commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:46:42 2021 -0500
๐จ Apply F() to various reports
commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:40:01 2021 -0500
๐จ Apply F() to G-code report header
commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 23:52:41 2021 -0500
๐จ Apply F() to UTF-8/MMU2 string put
commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 22:11:48 2021 -0500
๐จ Apply F() to some ExtUI functions
commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:55:08 2021 -0500
๐จ Apply F() to Host Actions strings
commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 17:05:11 2021 -0500
๐จ Apply F() to status message
commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:03:07 2021 -0500
๐จ Apply F() to serial macros
commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 21:11:31 2021 -0500
๐จ Apply F() to G-code suite and queue
commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:43:52 2021 -0500
๐จ Apply F() to G-code subcommands
commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:22:37 2021 -0500
๐จ Update F string declarations
commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Oct 4 00:24:41 2021 -0500
๐จ Axis name string interpolation, with examples (#22879)
commit ecb08b15bed770972a263abb600207a0db8791d1
Merge: 798d12c2af 854ce63358
Author: Sergey <sergey@terentiev.me>
Date: Wed Dec 22 11:58:28 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 19 05:33:21 2021 +0700
๐ Fix loud_kill heater disable (#23314)
commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date: Tue Nov 23 22:30:13 2021 +0100
๐ Fix homing current for extra axes (#23152)
Followup to #19112
commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Sat Oct 9 19:13:19 2021 -0400
๐ Fix IDEX Duplication Mode Positioning (#22914)
Fixing #22538
commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Nov 24 04:19:32 2021 +0700
๐ Fix serial_data_available (#23160)
3 years ago
|
|
|
SERIAL_ECHOLNF(stat);
|
|
|
|
|
|
|
|
return test_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_tmc_connection(LOGICAL_AXIS_ARGS(const bool)) {
|
|
|
|
uint8_t axis_connection = 0;
|
|
|
|
|
|
|
|
if (x) {
|
|
|
|
#if AXIS_IS_TMC(X)
|
|
|
|
axis_connection += test_connection(stepperX);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
|
|
|
axis_connection += test_connection(stepperX2);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Y_AXIS, y)) {
|
|
|
|
#if AXIS_IS_TMC(Y)
|
|
|
|
axis_connection += test_connection(stepperY);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
|
|
|
axis_connection += test_connection(stepperY2);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TERN0(HAS_Z_AXIS, z)) {
|
|
|
|
#if AXIS_IS_TMC(Z)
|
|
|
|
axis_connection += test_connection(stepperZ);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
|
|
|
axis_connection += test_connection(stepperZ2);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
|
|
|
axis_connection += test_connection(stepperZ3);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z4)
|
|
|
|
axis_connection += test_connection(stepperZ4);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if AXIS_IS_TMC(I)
|
|
|
|
if (i) axis_connection += test_connection(stepperI);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(J)
|
|
|
|
if (j) axis_connection += test_connection(stepperJ);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(K)
|
|
|
|
if (k) axis_connection += test_connection(stepperK);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (TERN0(HAS_EXTRUDERS, e)) {
|
|
|
|
#if AXIS_IS_TMC(E0)
|
|
|
|
axis_connection += test_connection(stepperE0);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E1)
|
|
|
|
axis_connection += test_connection(stepperE1);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E2)
|
|
|
|
axis_connection += test_connection(stepperE2);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E3)
|
|
|
|
axis_connection += test_connection(stepperE3);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E4)
|
|
|
|
axis_connection += test_connection(stepperE4);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E5)
|
|
|
|
axis_connection += test_connection(stepperE5);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E6)
|
|
|
|
axis_connection += test_connection(stepperE6);
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E7)
|
|
|
|
axis_connection += test_connection(stepperE7);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
Squashed commit of the following:
commit 4b9fce2e8588f5dea0658e93fa0260830a851874
Merge: ecb08b15be e17d710c5c
Author: Sergey <sergey@terentiev.me>
Date: Mon Dec 27 16:47:22 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit e17d710c5c4c96e069f64854e3fcdb77abcf90e1
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 22:13:20 2021 -0600
๐ Marlin 2.0.9.3
commit 9b13ae239953df3b00ad18a241e001723c3f4756
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Dec 25 19:41:01 2021 -0800
๐ Fix MKS Robin E3 NeoPixel pin default (#23350)
commit 06f36dc7467f0053767f307a18933df556074d99
Author: kaidegit <60053077+kaidegit@users.noreply.github.com>
Date: Sun Dec 26 10:12:20 2021 +0800
๐ Fix open for bin rename (#23351)
commit 98eca9cb23084f0c21ae85b382e6f473eb40ebbf
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 03:27:45 2021 -0600
๐ง Move MOTHERBOARD closer to top
commit 626879500388c4a203022c5fc03c32d5a8281348
Author: fflosi <34758322+fflosi@users.noreply.github.com>
Date: Sat Dec 25 05:57:07 2021 -0300
โจ Per-axis TMC hold multiplier (#23345)
commit b4f0922a7caea03b3c3315d48d86109bcc84c4be
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Fri Dec 24 14:03:32 2021 +0800
โจ MKS TinyBee board support (#23340)
Co-Authored-By: Sola <42537573+solawc@users.noreply.github.com>
commit aef613acd394d72d17cda8b431bcfcc2165c9608
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 23 15:19:39 2021 +0700
๐ง Group FAST_PWM_FAN.options (#23331)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 9ecfa1d2528a57eaa71a25acaac3e87fb45e0eb1
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Dec 21 23:09:55 2021 -0500
โจ BLTouch High Speed mode runtime configuration (#22916, #23337)
Co-Authored-By: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit e0bed1e344946154cc94cb58fbca281b360ee4a9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 15:44:04 2021 +1300
โจ Option to reset EEPROM on first run (#23276)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d21fa25ab8c369ff800e0451c75fe9f9e6134878
Author: Spencer Owen <owenspencer@gmail.com>
Date: Sat Dec 18 18:58:46 2021 -0700
โจ Creality3D V4.2.3 / Ender-2 Pro board (#23307)
commit 0dc1a58b241217899c88945ea8f6f8dc8f39470e
Author: X-Ryl669 <boite.pour.spam@gmail.com>
Date: Tue Dec 14 07:22:06 2021 +0100
โจ Configurations embed and retrieve (#21321, #23303)
commit f2ca70e2328c3158d54c302dca310bf2ed5d465d
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Wed Dec 8 20:55:09 2021 +0200
๐ Fix and improve MAX31865 (#23215)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a6bed228391afe290e8fe4181f624f21dd461b73
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Sat Dec 11 03:38:03 2021 +0800
โจ BigTreeTech SKR mini E3 V3.0 (STM32G0B1RET6) (#23283)
commit efd67cf80d1eebd1470bd7c8b822e9103d70e778
Author: Giuseppe499 <giuseppe499@live.it>
Date: Tue Dec 7 02:53:51 2021 +0100
โจ X Twist Compensation & Calibration (#23238)
commit 15204470a8da2b579dab029cf8bdf6038914e462
Author: ladismrkolj <ladismrkolj@gmail.com>
Date: Sun Dec 5 22:41:39 2021 +0100
๐ง Chamber Fan index option (#23262)
commit 48358d6a5c4eccb4dd1b4d141c38cf45304b4df7
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Dec 3 12:48:48 2021 -0600
๐๏ธ Fix Maple HAL/STM32F1 PWM (#23211)
commit d7abb891cd91ef991234784a0b707346ac34e53a
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Dec 3 19:31:48 2021 +0100
๐๏ธ Rework STM32 timer frequency protection (#23187)
commit 52a44eb200b8e14d7738565f50888d34cc5200f0
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 30 15:04:05 2021 -0600
๐ Fix STM32 FastPWM
commit 9b1c0a75e18faf754a55ec324ac327ba2a25819f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Nov 27 18:33:32 2021 -0600
๐จ Rename HAL timer elements
commit d75e7784e50dad2b9f598ef559958e9015e64550
Author: schmttc <89831403+schmttc@users.noreply.github.com>
Date: Wed Nov 24 08:52:18 2021 +1100
โจ EasyThreeD ET4000+ board and UI (#23080)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 0e60c8b7e04a6cd2758108bcc80f2ab57deec23c
Author: John Robertson <john@cirtech.co.uk>
Date: Tue Nov 23 21:24:24 2021 +0000
โจ MarkForged YX kinematics (#23163)
commit 018c7b1cf4d3b2b54287f61b478e813041c1c661
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sun Nov 21 11:25:06 2021 -0800
โจ BigTreeTech Mini 12864 V1.0 (#23130)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit af1d603374a34cfc2d8b34fce269a0a6683d7c68
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 21:01:53 2021 +0100
โจ Fan tachometer support (#23086, #23180, #23199)
Co-Authored-By: Scott Lahteine <github@thinkyhead.com>
commit 884308f964ddb92c1371bc9ec96e587ef04336e0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 16 08:54:30 2021 -0600
๐ง SOUND_MENU_ITEM for E3V2
commit 7269990413a630b134f3e990fe188c522659dca9
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:31:35 2021 -0500
๐ธ Expose sub-options for E3V2 Enhanced (#23099)
commit 2a90d93b17c1014f6a29b0ecc015c7fbc469fbdc
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Wed Nov 17 09:33:42 2021 -0800
๐ Overridable probe-related pins (#23107)
commit 6e284f882388d314517544b6c2e46f7cff7c99e8
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Wed Nov 10 23:56:10 2021 +0800
โจ Support for BIQU B1-SE-Plus strain gauge probe (#23101)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit a2349fc411321ae4ff2bb286af04bb7543963c72
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 23:47:52 2021 -0600
๐จ Configurable firmware bin filename
Configuration.h > FIRMWARE_BIN
commit a3964b2b40f97507edb7b25ea4c47b37db2a1aaa
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 20:59:28 2021 -0600
๐จ Ignore more generated files
commit 226ee7c1f3e1b8f88759a1dc49f329ab9afb3270
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Dec 24 01:46:51 2021 -0600
๐ง Sanity check MMU2_MENUS
commit 2c12171f46488a31cb5d4d78868892ad2918e298
Author: Attila BODY <attila.body@gmail.com>
Date: Fri Dec 24 06:57:20 2021 +0100
๐ Fix Robin Nano v3 filament runout pins (#23344)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d034a9c295c787ee06c76d65ce61f34cb9f0a795
Author: MrAlvin <umo-testing@3iii.dk>
Date: Thu Dec 23 10:47:52 2021 +0100
๐ธ Show mm'ss during first hour (#23335)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit d2c7104bb37ca7e10622dfe1e1f0a6e5c3d23240
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Dec 15 07:51:19 2021 +0700
๐ธ Change "SD" to "Media" or "SD/FD" (#23297)
commit 570c7e86380adb2071a94a433dc6babf6c8f9e32
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Wed Dec 22 13:48:38 2021 +1300
๐ Fix Chitu Z_STOP_PIN (#23330)
commit cc4578a3d33b67268d26255139eceff1c805ec52
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Dec 23 07:49:15 2021 +0100
๐ฉน Fix settings G21 report (#23338)
commit 1db84be66aee65ca120b6f9d3203ac0e19699c30
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Dec 21 01:26:31 2021 -0600
๐๏ธ FAST_PWM_FAN default 1KHz base freq. (#23326)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 77c9668fe2b897ee142539a0124f359fcb8de070
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 19:25:28 2021 +1300
๐ Fix LCD_BED_LEVELING compile (#23298)
commit 22cf9b444e9185ef173ebf145f3bb9207d266ec4
Author: GHGiampy <83699429+GHGiampy@users.noreply.github.com>
Date: Mon Dec 20 09:44:43 2021 +0100
๐งโ๐ป Option allowing > 127 Neopixels (#23322)
commit 97798d1e47d2211827cccadc31f61b59e0e9e667
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:33:49 2021 -0500
๐จ Update SKR V2 pins
commit f4b808456ac5b2ce55329a2ad8db00b6cc9510cb
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Dec 14 01:47:57 2021 +0100
๐ธ Use M600 for disabled MMU (#21865)
commit 62647369681c3449c7f3ee31d4f4d2da6f3ada9c
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Tue Dec 14 01:41:21 2021 +0100
๐ Fix TFT_COLOR_UI Release Media issue (#23123)
commit 7a5f103bcf6c3387ab832d64244e252a16e230a6
Author: John Lagonikas <39417467+zeleps@users.noreply.github.com>
Date: Sat Dec 18 01:31:10 2021 +0200
๐ง Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)
commit 1a8307b196ce5ed791b8f9bf8acfb50a797e45a9
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 18 17:38:29 2021 -0600
๐ Fix a config comment
commit 13a1c86ae832274026e8b3a4031bc28a6fca2db9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:18:24 2021 +1300
โจ M115 flag EXTENDED_M20 (#22941)
commit 15656201d281842b9f9101133529a76738b76cdd
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Tue Dec 14 13:13:34 2021 +1300
โ๏ธ Clean up duplicate defs (#23182)
commit f3e372cb4c849bbd77cec949f5fbd632bf84efed
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Tue Dec 14 07:11:52 2021 +0700
๐ฉน Init fan speed at boot (#23181)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit c781ecc437e27f5efd438a9f2d92bf8b7be3a299
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 13 16:15:46 2021 -0600
๐ง Fix unknown board test
commit daa8fff6c630da27bed2df7bd30c38e7e359c0e8
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Dec 12 16:16:40 2021 -0600
๐ฉน SD abort requires open file
See #22566
commit d481bba3275bc9c7fb4a88fac3eb66727d73f504
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 12 11:06:45 2021 +1300
๐ Fix MARLIN_F103Rx variant SCK / MOSI pins (#23282)
commit 32b08ae04cdeef3362a92ee9c1d56787b0792b4c
Author: Scott Alfter <scott@alfter.us>
Date: Wed Dec 8 23:18:04 2021 -0800
Fix Endstops::report_states (#23280)
Fix regression 4d45fdf0eb
commit f00a0356c7fd9708ebabd4e5a25df0a3d6dd35f6
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Dec 8 18:36:08 2021 -0600
๐จ Misc. probe / endstop cleanup
commit 9871800874edf7e33233ba853735708f823e13a7
Author: Sola <42537573+solawc@users.noreply.github.com>
Date: Thu Dec 9 03:37:45 2021 +0800
๐ Fix MKS LVGL UI retraction (#23267)
commit 39c2c038be51cd1bfc9cd963baf68307c28f542c
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 02:15:31 2021 +0700
๐ฉน Coerce pin_t in set_pwm_duty macros (#23273)
commit 285d6488a369bd189073fae1cdfea5818a5f2275
Author: Jason Smith <jason.inet@gmail.com>
Date: Wed Dec 8 11:10:37 2021 -0800
๐ Fix ACTION_ITEM with nullptr (#23195)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit eecbd09a460d255594f418078ce5f96e9e688008
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Dec 9 01:57:50 2021 +0700
๐ธ Onboard SD for SKR 2.0 / SKR PRO (#23274)
commit 8d4e4ac11530ba2576244f69802e35485ed05863
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Dec 8 12:40:23 2021 -0600
๐จ Rename MAX31865 elements
commit b77a5d4c8d9b90bdd870ed9590e3f2538f34b8c6
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Dec 6 20:18:50 2021 -0600
โ๏ธ MAX31856 => MAX31865
commit c3b8b3e7e6b3571d3d01f2bb1e4298c25d71d051
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Dec 6 15:52:18 2021 -0600
๐ฉน Fix non-PWM cutter compile (#23169)
commit 7123b15801779efb2dfb9bbc932b7d665a708868
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Dec 6 21:40:18 2021 +0000
๐ Fix TWIBus Wire.begin call (#23183)
commit 8a2f13d657cb881b7e0365dd0a28b233125d433c
Author: Chris Pepper <p3p@p3psoft.co.uk>
Date: Sun Dec 5 22:18:02 2021 +0000
๐ HAL_reboot for native HAL (#23246)
commit 251d9fc1d741132f3baa1a7c9c9ead25a65af3c7
Author: tommywienert <53783769+tommywienert@users.noreply.github.com>
Date: Sun Dec 5 23:16:23 2021 +0100
๐ Fix env:chitu_f103 (#23225)
commit 5eeb9650b5bbaeb2a07436d0e9cc5036dc518723
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Dec 6 10:42:56 2021 +1300
๐ More Longer3D LKx Pro serial tests (#23260)
commit c0addd1d33017e97117ffab1e3145a55750fd2c4
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Sat Dec 4 23:44:10 2021 +0000
โจ M3426 to read i2c MCP3426 ADC (#23184)
commit 05b57278d43fb1bcf7165dae88643dbac2ff7e8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Dec 4 17:17:10 2021 -0600
๐ง Cutter pins for SKR 2.0
commit aa3ec2fbfda25381eb4effb65471f206511a823d
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 5 05:14:19 2021 +0700
๐ธ Park nozzle on "loud kill" (#23172)
commit 4468516aa29b1319e8d296880ebf395a2e7e1d09
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Dec 5 11:10:29 2021 +1300
โจ BigTree SKR 2 with F429 (#23177)
commit 95d006b4061f15b8a7edfd62ad4760994b28610f
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sat Dec 4 09:48:54 2021 +1300
๐ Fix TIMER_TONE for ZM3E4 (#23212)
commit 5b057b4bcfeec871830bab9c6a15bf1e52e53c62
Author: Jiri Jirus <jiri.jirus@cloudaper.com>
Date: Tue Nov 30 21:46:48 2021 +0100
๐ฉน Assume 4K EEPROM for RUMBA32 BTT (#23205)
commit 77af48e5479eb0840977fc6ad16f1b8ad651efd4
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 30 13:03:31 2021 -0600
๐ Fix STM32 FastPWM
commit 0f7f709aad290285f10d6bed733f783dee6c324c
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 27 14:59:32 2021 -0800
โ๏ธ Fix Unicode (#23186)
commit a8c0e11cb143cb40637349cccdcc89282382f3d7
Author: Jason Smith <jason.inet@gmail.com>
Date: Sat Nov 27 13:54:39 2021 -0800
๐ฉน Handle nullptr in CardReader::printLongPath (#23197)
commit 0556da85b0d1aa9dee1fa229296270468cb13180
Author: Anson Liu <ansonl@users.noreply.github.com>
Date: Sat Nov 27 17:58:05 2021 -0500
๐ฉน UM2 extruder cooling fan on PJ6 (#23194)
commit 93652e5c6fc4d4f141bdc524e01144ef7c6221dd
Author: George Fu <nailao_5918@163.com>
Date: Sun Nov 28 03:26:53 2021 +0800
โจ FYSETC Spider v2.2 (#23208)
commit f3fc1d15a3f7a77e36ce9e072c72bfae127f57d9
Author: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Tue Nov 23 22:33:33 2021 +0100
๐ฉน Fix include path (#23150)
commit 3148060550eee847ec9d20eedf6bc890c9f4e12a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 23 13:54:31 2021 -0800
๐ Biqu BX temporary framework workaround (#23131)
commit 5f08864d1fa8146bc909f3b79daa0bf026e94c6b
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Nov 23 14:05:50 2021 -0600
๐ Fix STM32 set_pwm_duty (#23125)
commit 184fc36a088204a1a6d98afbf3e05f24670e2e77
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Nov 21 20:13:01 2021 +0100
๐ Fix TFT backlight sleep/wake (#23153)
commit 281ed99868e2ad67be39858aac5ba6a6b46c6fd0
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sat Nov 20 02:44:53 2021 +0100
โก๏ธ Reduce calls to set fan PWM (#23149)
commit 2cc4a1b3260e1a559ce91c707e1a7cdc5444ca94
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed Nov 17 13:01:44 2021 -0600
๐จ Misc formatting
commit c5bd08755cef48d8dc920053b68da1bbe01a56b0
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 18 01:35:28 2021 +0800
๐ Init PROBE_ENABLE_PIN (#23133)
commit 99f58f63f264a9968d5b98ad2e1c6e7f2411d57e
Author: luzpaz <luzpaz@users.noreply.github.com>
Date: Wed Nov 17 12:09:01 2021 -0500
๐จ Fix misspelling (#23137)
commit c2a674d2c114eee94debf9f649e66cbdb06afdbb
Author: espr14 <espr14@gmail.com>
Date: Wed Nov 17 18:07:11 2021 +0100
๐๏ธ Planner::busy() (#23145)
commit feffc1986744cdf10f9e8ca474f4a1aa4ca10dfe
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 14:06:36 2021 -0600
๐ Fix fast PWM WGM code
Followup to #23102
commit f637e1c5017540b32ccf43bf32269905abdd51ee
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Nov 16 12:49:25 2021 -0600
๐จ Bring Makefile up to date
commit 78240a279b5eaa6900d381616e5e252513e82b67
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Tue Nov 16 19:32:43 2021 +0300
๐จ Ignore sim flashdrive file (#23129)
commit 656034d2d9d94208611ee6b684bdfb1441291249
Author: Luc Van Daele <lvd@sound-silence.com>
Date: Tue Nov 16 16:24:53 2021 +0100
๐ Fix G33, Delta radii, reachable (#22795)
commit 39a81d167ee6e41aa055ceb7c7eceb919573aa61
Author: Mikhail Basov <github@basov.net>
Date: Mon Nov 15 07:46:34 2021 +0300
๐ธ LCD_SHOW_E_TOTAL for TFT_COLOR_UI (#23127)
commit cb1570d162680dd0de9e23a1f4ed9fb40b56b72b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 14 17:19:57 2021 -0600
๐ Fix SENSORLESS_HOMING for 6-axis
commit 8cb646cc20576ed6cf4462e9ac9125f396a38bd9
Author: EvilGremlin <22657714+EvilGremlin@users.noreply.github.com>
Date: Mon Nov 15 00:15:07 2021 +0300
๐ธ Simplify touchscreen calibration for SimUI (#23124)
commit 3cccb21dc9673d641a5b490b3d6a60466f5fd12f
Author: Miguel Risco-Castillo <mriscoc@users.noreply.github.com>
Date: Wed Nov 10 11:55:20 2021 -0500
๐ธ Fix up E3V2 Enhanced (#23100)
commit 7f4a49cc446addad07c5b1c06066e821f1e4b16c
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 22 13:21:26 2021 -0500
๐จ Misc. issue review patches
commit e0c439fe911320d08229ebc24eee2a32cd1ee986
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Sun Nov 14 05:55:31 2021 -0600
โก๏ธ Controller Fan software PWM (etc.) (#23102)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 49e233e06f8be0d408a3576d77fa1bf5c27ff995
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Fri Nov 12 21:26:19 2021 +0100
๐จ MPX ARM Mini pins cleanup (#23113)
commit b662dd1f9221bc1a489dfb84737a49564f72858f
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Fri Nov 12 12:14:28 2021 -0600
๐ [LCP1768] Init PWM in set_pwm_duty (#23110)
commit 700cae43abd0108aae612513509dafccba493b61
Author: Skruppy <skruppy@onmars.eu>
Date: Fri Nov 12 15:57:24 2021 +0100
๐ฉน Fix RGB case light compile (#23108)
commit 1c74c6e7ac943078835dca58e295b2b2fe57f787
Author: George Fu <nailao_5918@163.com>
Date: Wed Nov 10 23:58:20 2021 +0800
๐ Fix FYSETC Cheetah 2.0 pins for production (#23104)
commit 757a9477db64086bebe2f1fa293ae3ec557b7a2f
Author: Minims <github@minims.fr>
Date: Sun Oct 10 01:10:21 2021 +0200
๐ฉน Adjust GTR 1.0 ST7920 display delay (#22904)
commit 59d43408f6e2fc33db4efb17dac54b6ebbed4547
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Dec 25 00:57:30 2021 -0600
fix breaks in F() resolution
commit 1d8941d008cbc8dfacd35db140c1e87fc938ee58
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:35:31 2021 -0500
๐จ Port libsdl2_net required for macOS simulator
commit 17f853d99ceccd06103cb404507b7ed171c306cf
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Tue Nov 9 08:30:02 2021 -0800
โก๏ธ BTT002 (STM32F407VET6) variant, MK3_FAN_PINS flag (#23093)
commit 6f9f25dbb29edbe5383f2f22a36d204484b19aa8
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Nov 7 01:11:51 2021 -0600
๐จ Misc. code cleanup
commit 0273a6858733d22647583d52df309fe05efd7d9e
Author: VragVideo <91742261+VragVideo@users.noreply.github.com>
Date: Sun Oct 3 06:12:51 2021 +0300
โจ WYH L12864 LCD (Alfawise Ex8) (#22863)
commit 58a26fcaaca2251a6098baad21236b0581f874a3
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Sat Nov 6 23:09:15 2021 -0700
๐ธ Indicate Preheating for probe / leveling (#23088)
commit 489aca03ff1f6859ebcc52f0e6af2e3cb4f0c056
Author: Evgeniy Zhabotinskiy <evg-zhabotinsky@users.noreply.github.com>
Date: Sun Nov 7 07:16:18 2021 +0300
๐ฉน Fix M503 report (#23084)
commit f32e19e1c64b3e495d18707ae571e81efaac2358
Author: Jin <3448324+jinhong-@users.noreply.github.com>
Date: Sun Nov 7 11:53:36 2021 +0800
๐ป Preliminary fix for Max31865 SPI (#22682)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 57bd04b6ce2a36526717bf2e6942c14d81be44ac
Author: dwzg <50058606+dwzg@users.noreply.github.com>
Date: Sun Nov 7 04:48:00 2021 +0100
๐ Fix JyersUI scrolling filename, etc. (#23082)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 396df93220f037f70035e0e0c08afef436538d4d
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Sun Nov 7 15:27:53 2021 +1300
๐ Fix DGUS Reloaded status message (#23090)
commit 9b76b58b791502cba0d6617042c37180851fd36f
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Nov 4 12:18:23 2021 -0500
๐ป Get/clear reset source earlier
Followup to #23075
commit 9fffed7160ad791e9d81d66ff7d0c0d3e085586d
Author: Skruppy <skruppy@onmars.eu>
Date: Thu Nov 4 18:11:57 2021 +0100
๐ Prevent AVR watchdogpile (#23075)
commit fd136d5501c51acbbf174ddf2331e747a80e2374
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Thu Nov 4 18:04:04 2021 +0100
๐ Fix TFT backlight [STM32] (#23062)
commit 89ec1c71f0f90ba926043ebdd8ace007b7912b58
Author: BigTreeTech <38851044+bigtreetech@users.noreply.github.com>
Date: Thu Nov 4 18:54:38 2021 +0800
๐ Fix Octopus-Pro Max31865 / SPI (#23072)
commit fc2020c6ecc7d731448509012a41d6ff499419bd
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Thu Nov 4 17:28:42 2021 +0700
๐จ Fix IntelliSense / PIO conflicts (#23058)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit f97635de364a27ddf8effd06ce0f18ceae5cf4f1
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Nov 4 14:04:06 2021 +1300
๐ 'STOP' auto-assign, some Chitu V9 pins (#22889)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit a0a57406a2e266bfc20e8e0d8a834cca3ef67367
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:06:31 2021 -0500
๐จ Script 'mfprep' finds pending commits
commit 5efef86cfa3ce88224edb68b2aa502dbf8939264
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Nov 3 07:02:21 2021 -0500
๐จ Update git helper scripts
commit 20c747753db6657a505b50db302f7ec9fd3a6e5d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Nov 2 01:28:00 2021 -0500
๐จ Support ABM in mf scripts
commit 08a9c6158798a59bd6af09b68144041fdc967d4b
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 23:15:29 2021 -0700
๐ Default NeoPixel pin for MKS Robin E3/E3D (#23060)
commit 0d91b07797c0d248eab25a64351db959a866bdc7
Author: Andrei M <22990561+andrei-moraru@users.noreply.github.com>
Date: Tue Nov 2 01:47:16 2021 -0400
โ๏ธ Use pwm_set_duty over analogWrite to set PWM (#23048)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit b033da1782579d27ed05d9acbf0b2ccb433bdbb8
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 22:43:40 2021 -0700
๐ง Endstop / DIAG homing conflict warning (#23050)
commit 4dcd872be54d913d26c95666a74a67efd59a0519
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 21:23:54 2021 -0700
โจ Allow Low EJERK with LA, optional (#23054)
commit 7e9e2a74358c6033577fc31f3a16af57214e4f3a
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Nov 1 20:23:24 2021 -0700
โจ Artillery Ruby (STM32F401RCT6) (#23029)
commit 0b841941276b246c06b52f65e5e45199d4792785
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Nov 1 23:03:50 2021 +0000
๐ธ More flexible Probe Temperature Compensation (#23033)
commit efd9329c813f47d7434f2c7acbb09bbce161a735
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Thu Jul 8 01:17:16 2021 -0500
๐ Tweak EXP comments
commit 5cbb820e2984d052c7ca412e06035206e5892790
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 23:43:19 2021 -0500
๐จ Help for GDB remote debugging
commit 5a0166489e7d4ec6ce70fc20070f667fd00bccec
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 22:43:02 2021 -0500
๐ฉน Fix linker error (transfer_port_index)
commit 692c9a6312785c728a9df474826acc0aa602771a
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 04:16:37 2021 -0500
๐ Update Ender-3 V2 config path
MarlinFirmware/Configurations#600
commit 545d14f9a54f9689f4ef258999cab3222275980b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Oct 30 01:39:33 2021 -0500
๐จ Adjust Ender-3 V2 DWIN options
commit 7b9e01eb2bd03564ad667746637d8f33899ad5b5
Author: aalku <aalku7@gmail.com>
Date: Sat Oct 30 07:17:20 2021 +0200
โจ Shutdown Host Action (#22908)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 8562f0ec44df99928bca503e77ccc500b8ec7654
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Fri Oct 29 20:46:55 2021 -0500
โจ "Rutilea" ESP32 board (#22880)
commit 6f59d8171f701cbeacf687937de1b0d6a68f6711
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 29 20:42:52 2021 -0500
๐ง Configuration version 02000903
commit d29a9014f2a4e496215a7b0503208b44a34915fb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:36:06 2021 -0500
๐จ Standard 'cooldown' method
commit 205d867e4bfa1c100ae69670c0a1a820cb8697a0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 20:01:44 2021 -0500
๐จ Standard material presets behavior
commit 84f9490149069a62c056cad9cb83ee7f2b4ee422
Author: Scott Lahteine <github@thinkyhead.com>
Date: Wed Oct 27 21:15:58 2021 -0500
๐จ Define HAS_PREHEAT conditional
commit 1fd42584230f1d45cba2cdb33c2618d42bf2d923
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Sat Oct 30 00:49:12 2021 +0200
๐ Fix E3V2 (CrealityUI) Tune/Prepare > Zoffset (#23040)
commit e8a55972a7eab13c231733676df8c9e306af4d12
Author: Scott Lahteine <github@thinkyhead.com>
Date: Thu Oct 28 19:22:35 2021 -0500
๐ Fix EZBoard V2 board name
commit aef413202e69ddbed26bb155041a97abb0dada2e
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Thu Oct 28 03:26:05 2021 -0700
๐ Fix MKS Robin E3/E3D Z Stop/Probe pins (#23034)
commit cbc7dadf42fc1cc56418caeb7ccba9491175f1ad
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 21:54:43 2021 -0500
๐จ Apply HAS_MULTI_HOTEND conditional
commit c508ecc414a5876e6dadfe4ade926bc5b8bc25c3
Author: Zlopi <zlopi.ru@gmail.com>
Date: Wed Oct 27 23:10:46 2021 +0300
๐ธ Scroll long filename on MKS TFT (#23031)
commit 384a31765f9080336d90a5404787bf1895dea2e9
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Thu Oct 28 09:06:06 2021 +1300
๐ฉน Retain LCD pins with motor expansion (#23024)
commit 0f2c4fc40ba87ffb5e345d7e8a16b5714b9a65bd
Author: somehibs <hibs@circuitco.de>
Date: Wed Oct 27 21:00:02 2021 +0100
๐ Fix serial PORT_RESTORE (and BUFFER_MONITORING) (#23022)
commit 66a274452c20c9cab608e44a61663cd5a76cf9d6
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Wed Oct 27 21:58:32 2021 +0200
๐ Fix E3V2 (CrealityUI) position display (#23023)
Followup to #23005, #22778
commit 12f8168d1eba025ceb7762f49fc903cb123a8b3b
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 26 19:36:16 2021 -0500
๐ธ Tweaks to UBL G29 Q
commit 2142e1dae493502adb1a26c9f81c2e6d43b0e02a
Author: woisy00 <spam@bergermeier.info>
Date: Wed Oct 27 01:05:34 2021 +0200
๐ Fix AUTOTEMP bug (thermal runaway) (#23025)
Regression from 9823a37
commit 8d21ea55a2e67712ca968807d9c0a86afa750373
Author: tombrazier <68918209+tombrazier@users.noreply.github.com>
Date: Mon Oct 25 06:33:40 2021 +0100
๐ Add USE_TEMP_EXT_COMPENSATION options (#23007)
commit a0da7e8a1fc1962fa2abf18db627e1985d06b18b
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sun Oct 24 23:33:27 2021 -0500
๐ง Fewer alerts about Z_SAFE_HOMING
commit e2452d6c571db0875cc3fe625a3e68a6e1c75e56
Author: tome9111991 <57866234+tome9111991@users.noreply.github.com>
Date: Fri Oct 22 18:16:07 2021 +0200
๐ Fix SHOW_REMAINING_TIME option for JyersUI (#22999)
commit 5173a3140da364d1645743cb0f2f0324245da5ea
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Fri Oct 22 08:52:31 2021 -0700
โจ BigTreeTech TFT35 SPI V1.0 (#22986)
commit e44f2b7d2db248c8ddef3574979a1a485137a99d
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Tue Oct 19 06:05:23 2021 -0500
๐ฉน Fix pragma ignored for older GCC (#22978)
commit ed78f7f4e65b632fa986400c65796233e1a5038e
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Oct 19 05:59:48 2021 -0500
๐จ Refactor MOSFET pins layout (#22983)
commit aa198e41dd01e7c52871611c880cae590aa8cb32
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 19 05:52:41 2021 -0500
๐จ Pragma GCC cleanup
commit 18b38fb58a348112ebfd91e9f6f92c64ad4dfa49
Author: Jason Smith <jason.inet@gmail.com>
Date: Mon Oct 18 01:11:16 2021 -0700
๐ Fix max chamber fan speed (#22977)
commit 5d79d8fad64a169351a36c5243911218e4ee6b7f
Author: Keith Bennett <13375512+thisiskeithb@users.noreply.github.com>
Date: Mon Oct 18 00:57:54 2021 -0700
๐ Fix I2C EEPROM SDA/SCL aliases with SKR Mini E3 V2 (#22955)
commit e7a746966d67d50fdeab67ce745a1524d34ccb59
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Mon Oct 18 20:54:20 2021 +1300
๐ Fix MMU1 compile (#22965)
commit 555f35d46f1b0ae9e2105c23a5f37afe8336e4f4
Author: Mike La Spina <mike.laspina@shaw.ca>
Date: Mon Oct 18 02:40:47 2021 -0500
๐จ Suppress type warning (#22976)
commit de77dfcbbd392c47ed8ec1f711abefe6c10b30f0
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 22:10:08 2021 -0500
๐จ Add MKS UI goto_previous_ui
commit af08f16efc8b31f2ae66672ac0df8dedbabdc163
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 20:24:41 2021 -0500
๐ธ Tweak MKS UI G-code console
commit 01a0f3a8cfc3ec1ae27e6959465fd275c4c895c7
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sun Oct 17 18:11:16 2021 -0500
๐จ Fix up MKS UI defines
commit f80bcdcc5cc03a0fdecdfe3c79f10c5a7436bf7d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Fri Oct 15 00:24:08 2021 -0500
๐จ Refactor Host Actions as singleton
commit 1ead7ce68198d5888b6a19195602679adf0cf7ab
Author: ellensp <530024+ellensp@users.noreply.github.com>
Date: Fri Oct 15 14:38:03 2021 +1300
๐ง Add, update TFT sanity checks (#22928)
commit dffa56463e89504302b95a7a7e7af8016c713bc8
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 23:19:05 2021 -0400
โก๏ธ Formbot ST7920 delays, intentional X2 pins (#22915)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit ae98d2e5eae1d41e1004919643cb34dc517c84e9
Author: Dmytro <svetotled@gmail.com>
Date: Wed Oct 13 05:45:00 2021 +0300
๐จ Update MKS UI for no bed, extruder (#22938)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
commit 5b1ef638ee9630063de0cc096cd408c871e5b72f
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Tue Oct 12 19:40:56 2021 -0400
๐ Fix IDEX + DISABLE_INACTIVE_EXTRUDER (#22925)
commit f3be03da20708c8dfc990e6e293c4e25a3605e52
Author: Stuart Pittaway <1201909+stuartpittaway@users.noreply.github.com>
Date: Mon Oct 11 23:42:29 2021 +0100
โจ M261 S I2C output format (#22890)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
commit 64128a5bcb46d9428ff9acc4f45fc79381c90322
Author: Tanguy Pruvot <tpruvot@users.noreply.github.com>
Date: Sun Oct 10 01:05:24 2021 +0200
๐ Queue string followup (#22900)
commit 0018c94a7992a6bd0e13219504e664dc4703687d
Author: Pyro-Fox <36782094+Pyro-Fox@users.noreply.github.com>
Date: Sat Oct 9 15:09:50 2021 -0700
๐ LCD string followup (#22892)
commit d48cb1153785178fba59c0f11da75720585baafb
Author: Scott Lahteine <github@thinkyhead.com>
Date: Tue Oct 5 21:19:28 2021 -0500
๐ Followup to F() in config_line
Followup to 1dafd1887e
commit d9f7de7a24071fecb9bcae3400e3b4ec56c68a8d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Mon Oct 4 19:50:14 2021 -0500
๐ ExtUI F() followups
Followup to 12b5d997a2
commit 3d102a77ca475c2dc6461152ecc445247b9bfd26
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 20:15:52 2021 -0500
๐จ Apply F() to kill / sendinfoscreen
commit 492d70424d3819762ece7ecb4913e94e3cebf232
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Tue Sep 28 19:28:29 2021 -0500
๐จ Apply F() to MKS UI errors, assets
commit 24dbeceb45a72c0b96d42e46ba750f41ac1dd4e2
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:46:42 2021 -0500
๐จ Apply F() to various reports
commit cabd538fdd03bec0b293cb290bbc3dc123da780a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 13:40:01 2021 -0500
๐จ Apply F() to G-code report header
commit 9cf1c3cf051f7fa946098e7a7873aa0a8797d62a
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 23:52:41 2021 -0500
๐จ Apply F() to UTF-8/MMU2 string put
commit c3ae221a109cb99bde634899f5b1b0ff690f29ab
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Sat Sep 25 22:11:48 2021 -0500
๐จ Apply F() to some ExtUI functions
commit 7626d859a65417f03494c1e99d3d29e79b84fd3d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:55:08 2021 -0500
๐จ Apply F() to Host Actions strings
commit 360311f2320d6e5a94d17c6ff830146675be732e
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 17:05:11 2021 -0500
๐จ Apply F() to status message
commit 433eedd50fb0b1da04a0153de483088c8de9295d
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Sep 27 11:03:07 2021 -0500
๐จ Apply F() to serial macros
commit 46c53f67307f78fc2a42a926a0b8f1f6db2d7ea9
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 21:11:31 2021 -0500
๐จ Apply F() to G-code suite and queue
commit 2b9ae0cc33a1996cb6dd1092743d4a3123c1d4c1
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:43:52 2021 -0500
๐จ Apply F() to G-code subcommands
commit 433a27e475584e73195a89d59ed5ecc20303d53d
Author: Scott Lahteine <github@thinkyhead.com>
Date: Sat Sep 25 18:22:37 2021 -0500
๐จ Update F string declarations
commit 1de265ea5dd09ac4371add0b1bb9c1b595a3c385
Author: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon Oct 4 00:24:41 2021 -0500
๐จ Axis name string interpolation, with examples (#22879)
commit ecb08b15bed770972a263abb600207a0db8791d1
Merge: 798d12c2af 854ce63358
Author: Sergey <sergey@terentiev.me>
Date: Wed Dec 22 11:58:28 2021 +0300
Merge branch '2.0.x' into vanilla_fb_2.0.x
commit 854ce63358f409340863024edd38fb7d1499fd91
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Sun Dec 19 05:33:21 2021 +0700
๐ Fix loud_kill heater disable (#23314)
commit 170f77fada009bcd77b02edf7b5d55d5173b00e9
Author: lukrow80 <64228214+lukrow80@users.noreply.github.com>
Date: Tue Nov 23 22:30:13 2021 +0100
๐ Fix homing current for extra axes (#23152)
Followup to #19112
commit 72b99bf1ba24cb9124668b958039b32a164c68cd
Author: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
Date: Sat Oct 9 19:13:19 2021 -0400
๐ Fix IDEX Duplication Mode Positioning (#22914)
Fixing #22538
commit 1a8583f4fce492240db5d890825b8edd8217025f
Author: Robby Candra <robbycandra.mail@gmail.com>
Date: Wed Nov 24 04:19:32 2021 +0700
๐ Fix serial_data_available (#23160)
3 years ago
|
|
|
if (axis_connection) LCD_MESSAGE(MSG_ERROR_TMC);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_TRINAMIC_CONFIG
|