Scott Lahteine
54109dfaec
Reduce code size for Dual X un-park
8 年之前
Scott Lahteine
fe96f74db1
Use const arguments in Dual X helper functions
8 年之前
Scott Lahteine
41278c1e8b
Apply LOGICAL_POSITION to home positions on Dual X
8 年之前
Scott Lahteine
053fb55af6
Fix modes ordering in prepare_move_to_destination_dualx
8 年之前
Scott Lahteine
56dd15c0ad
Use SET_INPUT for PS_ON_PIN in kill
8 年之前
Scott Lahteine
c06161b773
Use apply_leveling, not MBL directly
8 年之前
Scott Lahteine
fccc97de6d
Save PROGMEM with string changes
Unlike RAM-based strings, PROGMEM strings aren’t consolidated by the
compiler.
8 年之前
Scott Lahteine
27dd5acc22
Fix set_led_color for BLINKM
Follow-up to #5330
8 年之前
Scott Lahteine
f60b4f8659
Allow case light pin to be active low
8 年之前
Scott Lahteine
65c50e062e
Support for an RGB LED using 3 pins
8 年之前
Scott Lahteine
61437d988a
Fix and optimize case-light code
8 年之前
Scott Lahteine
f6f77d34a1
Add a fade factor for mesh leveling
8 年之前
Scott Lahteine
2e966f8e5b
Patch Capabilities Report for "PROGRESS"
8 年之前
Kai
0c341f0c50
Added Menu entry for Case light
8 年之前
Scott Lahteine
3bc2273ac9
Comment M540
8 年之前
Scott Lahteine
3e0376b45e
Reorder M114 and M119 gcode cases
8 年之前
Scott Lahteine
127e21ae00
Extend M122 for all steppers
8 年之前
Moritz
d67c1d825f
Add TMC2130 support
8 年之前
Scott Lahteine
11effeee2c
Add an option for delta to home to the top
8 年之前
Moshen Chan
29b174bfb9
Fix z feedrate value when doing mesh bed leveling. probe feedrate uses XY_PROBE_SPEED
8 年之前
Scott Lahteine
87b6b19256
Patch CASE_LIGHT typo
8 年之前
Scott Lahteine
181cdb3cfe
Move GCode list above include lines
8 年之前
Scott Lahteine
eb120e518c
Followup to new endstop interrupts feature
- Fix typos, verbiage
- Fix naming of `setup_endstop_interrupts`
- Some formatting, indentation, spacing
8 年之前
Scott Lahteine
98600e1433
Minor stepper cleanup
8 年之前
Florian Heilmann
d08867986e
Add autotemp capabilities to M104
This allows M104 to pass the F and B parameters to enable autotemp as well
8 年之前
Petr Zahradník junior
d7ce5d271b
Replace const bool with #define for consistency
8 年之前
Scott Lahteine
99b0c1fe56
Fix DIRECT_MIXING_IN_G1 to preserve the previous mix
8 年之前
Scott Lahteine
410657b050
Fix G30 with limits, print correct probe XY
8 年之前
AnHardt
f3eee02596
Introduce endstop interrupts
If ENDSTOP_INTERRUPTS_FEATURE is enabled this tries to set up interrupt routines
for all used endstop pins. If this worked without errors, `endstops.update()` is called
only if one of the endstops changed its state.
The new interrupt routines do not really check the endstops and react upon them. All what they
do, is to set a flag if it makes sense to call the endstop test we are used to.
This can be used on:
* ARM (DUE) based boards - all pins can raise interrupts,
* RAMPS - all 6 endstop pins plus some other on EXT-2 can raise interrupts,
* RAMPS based boards - as long the designers did not change the pins for the endstops or at least left enough,
* all boards, if there are enough pins that can raise interrupts, and you are willing/able to swap with pins dedicated to other purpose.
8 年之前
Scott Lahteine
f663220e87
Store Mix factors as reciprocals and multiply
8 年之前
Scott Lahteine
b31a07e261
Stateful M355 with separate P parameter
8 年之前
Scott Lahteine
3c9a838651
Extended capabilities report in M115
8 年之前
Scott Lahteine
68b866b5dd
Add M155 - Auto-report temperature with interval
8 年之前
Scott Lahteine
75bfde9945
M155=>M260, M156=>M261
8 年之前
Scott Lahteine
e765eebfb0
Patch spacing in bilinear grid report
8 年之前
Scott Lahteine
1864b282c5
Implement reversed CORE options
8 年之前
Nikolay Zinov
dea00bbcf1
improve G30 probing
Add optional parameters
X, Y for probe point
S sets stowing on and off
8 年之前
Scott Lahteine
176aeafc19
Don't define bilinear_line_to_destination on kinematic setups
8 年之前
Scott Lahteine
236853df22
Corrections to bilinear_line_to_destination
- Allow more than 9x9 probe points
- Account for the probe starting position
8 年之前
Scott Lahteine
0115e495fe
Fix up Dual X switch blocks
8 年之前
Scott Lahteine
2495ab7af2
Make dual_x_carriage_mode an enumeration
8 年之前
Scott Lahteine
d6c36f5bb9
Fix Z raise with DXC_AUTO_PARK_MODE
8 年之前
Scott Lahteine
0c79553fc5
Cast int to AxisEnum for some accessors
8 年之前
Scott Lahteine
adbf1f7dca
Add M355 to the GCodes list.
8 年之前
Scott Lahteine
ee5b8d6dc8
Split moves on grid boundaries with bilinear ABL on cartesian
8 年之前
Scott Lahteine
955d14acb0
Patch photo pin code style
8 年之前
Stanley
ab3f966f5f
Case light G-code M355
implemented G-Code M355 into Marlin
8 年之前
Sebastianv650
f9bea7968f
BugFix for incorrect E-speed calculation
The extrusion speed was wrong due to a not high enough precision of
esteps to XY steps, therefore now the target float values are used to
calculate the ratio between XY movement and extrusion speed.
The e_speed_multiplier8 was replaced by an absolute multiplier called
abs_adv_steps_multiplier8, therefore one multiplication and bitshift can
be saved inside the stepper ISR. Due to this, also extruder_advance_k is
better suited inside the planner and not the stepper files any more.
8 年之前
Scott Lahteine
ff3a8ca0d1
Use NUM_DIGITAL_PINS instead of custom DIO_COUNT
8 年之前
Scott Lahteine
04a1fac029
Some cleanup to M43
8 年之前