🐛 Spellcheck comments (#22496)
codespell -q 3 --builtin=clear,rare,informal,code -S ./Marlin/src/lcd/language -L alo,amin,endcode,stdio,uint
This commit is contained in:
@ -884,7 +884,7 @@ void Endstops::update() {
|
||||
const byte dual_hit = TEST_ENDSTOP(_ENDSTOP(A, MINMAX)) | (TEST_ENDSTOP(_ENDSTOP(A##2, MINMAX)) << 1); \
|
||||
if (dual_hit) { \
|
||||
_ENDSTOP_HIT(A, MINMAX); \
|
||||
/* if not performing home or if both endstops were trigged during homing... */ \
|
||||
/* if not performing home or if both endstops were triggered during homing... */ \
|
||||
if (!stepper.separate_multi_axis || dual_hit == 0b11) \
|
||||
planner.endstop_triggered(_AXIS(A)); \
|
||||
} \
|
||||
@ -894,7 +894,7 @@ void Endstops::update() {
|
||||
const byte triple_hit = TEST_ENDSTOP(_ENDSTOP(A, MINMAX)) | (TEST_ENDSTOP(_ENDSTOP(A##2, MINMAX)) << 1) | (TEST_ENDSTOP(_ENDSTOP(A##3, MINMAX)) << 2); \
|
||||
if (triple_hit) { \
|
||||
_ENDSTOP_HIT(A, MINMAX); \
|
||||
/* if not performing home or if both endstops were trigged during homing... */ \
|
||||
/* if not performing home or if both endstops were triggered during homing... */ \
|
||||
if (!stepper.separate_multi_axis || triple_hit == 0b111) \
|
||||
planner.endstop_triggered(_AXIS(A)); \
|
||||
} \
|
||||
@ -904,7 +904,7 @@ void Endstops::update() {
|
||||
const byte quad_hit = TEST_ENDSTOP(_ENDSTOP(A, MINMAX)) | (TEST_ENDSTOP(_ENDSTOP(A##2, MINMAX)) << 1) | (TEST_ENDSTOP(_ENDSTOP(A##3, MINMAX)) << 2) | (TEST_ENDSTOP(_ENDSTOP(A##4, MINMAX)) << 3); \
|
||||
if (quad_hit) { \
|
||||
_ENDSTOP_HIT(A, MINMAX); \
|
||||
/* if not performing home or if both endstops were trigged during homing... */ \
|
||||
/* if not performing home or if both endstops were triggered during homing... */ \
|
||||
if (!stepper.separate_multi_axis || quad_hit == 0b1111) \
|
||||
planner.endstop_triggered(_AXIS(A)); \
|
||||
} \
|
||||
|
@ -857,7 +857,7 @@ class Planner {
|
||||
static void quick_resume();
|
||||
#endif
|
||||
|
||||
// Called when an endstop is triggered. Causes the machine to stop inmediately
|
||||
// Called when an endstop is triggered. Causes the machine to stop immediately
|
||||
static void endstop_triggered(const AxisEnum axis);
|
||||
|
||||
// Triggered position of an axis in mm (not core-savvy)
|
||||
|
@ -955,7 +955,7 @@ void reset_trinamic_drivers() {
|
||||
// TMC Slave Address Conflict Detection
|
||||
//
|
||||
// Conflict detection is performed in the following way. Similar methods are used for
|
||||
// hardware and software serial, but the implementations are indepenent.
|
||||
// hardware and software serial, but the implementations are independent.
|
||||
//
|
||||
// 1. Populate a data structure with UART parameters and addresses for all possible axis.
|
||||
// If an axis is not in use, populate it with recognizable placeholder data.
|
||||
|
@ -1502,7 +1502,7 @@ void Temperature::manage_heater() {
|
||||
#endif
|
||||
|
||||
#if ENABLED(PIDTEMPCHAMBER)
|
||||
// PIDTEMPCHAMBER doens't support a CHAMBER_VENT yet.
|
||||
// PIDTEMPCHAMBER doesn't support a CHAMBER_VENT yet.
|
||||
temp_chamber.soft_pwm_amount = WITHIN(temp_chamber.celsius, CHAMBER_MINTEMP, CHAMBER_MAXTEMP) ? (int)get_pid_output_chamber() >> 1 : 0;
|
||||
#else
|
||||
if (ELAPSED(ms, next_chamber_check_ms)) {
|
||||
|
@ -31,7 +31,7 @@
|
||||
// B Value 3950K at 25/50 deg. C
|
||||
// B Value Tolerance + / - 1%
|
||||
constexpr temp_entry_t temptable_61[] PROGMEM = {
|
||||
{ OV( 2.00), 420 }, // Guestimate to ensure we dont lose a reading and drop temps to -50 when over
|
||||
{ OV( 2.00), 420 }, // Guestimate to ensure we don't lose a reading and drop temps to -50 when over
|
||||
{ OV( 12.07), 350 },
|
||||
{ OV( 12.79), 345 },
|
||||
{ OV( 13.59), 340 },
|
||||
|
Reference in New Issue
Block a user