- Aug 28, 2015
-
-
Richard Wackerbarth authored
With the introduction of the #if ENABLED(…) reads better than
-
- Aug 16, 2015
-
-
Richard Wackerbarth authored
-
- Aug 03, 2015
-
-
Scott Lahteine authored
-
- Jul 31, 2015
-
-
Scott Lahteine authored
Apply `ENABLED` / `DISABLED` macros to planner files.
-
- Jul 30, 2015
-
-
Andrew Lenharth authored
-
- Jul 24, 2015
-
-
Scott Lahteine authored
-
- Jul 19, 2015
-
-
Scott Lahteine authored
-
Scott Lahteine authored
-
Richard Wackerbarth authored
Elsewhere DRYRUN turns off the heating elements and ignores constraints on them. Here, whenever motion is entered into the planner, if DRY RUN is set, we instantly act as if the E_AXIS is in the desired final position.
-
- Jun 07, 2015
-
-
CONSULitAS authored
planner.cpp: single evil and hidden tab removed
♻️ 😏 -
CONSULitAS authored
@CONSULitAS planner.cpp: Add FAN_MIN_PWM for slow fan stopping issue (V2.1 with macro and linear scaling) @thinkyhead thanks for idea on linear scaling
-
- Jun 01, 2015
-
-
wurstnase authored
replace extruder_multiply with extruder_multiplier like feedrate_multiplier or volumetric_multiplier
-
MagoKimbra authored
-
- May 27, 2015
-
-
Scott Lahteine authored
-
- May 17, 2015
-
-
Scott Lahteine authored
-
- May 03, 2015
-
-
Scott Lahteine authored
-
- Apr 27, 2015
-
-
Scott Lahteine authored
With these changes the output of `M503 S0` is all you need to restore the EEPROM. Building on this it is straightforward to save and restore the EEPROM state using the SD card or external GCode file. - Added `M145` to set “heatup states” for the LCD menu - Added `M420` to toggle Mesh Bed Leveling - Added `M421` to set a single Mesh coordinate - Extended `Config_PrintSettings` with added M codes - Cleaned up some comments here and there
-
- Apr 14, 2015
-
-
Scott Lahteine authored
-
- Apr 13, 2015
-
-
Scott Lahteine authored
-
- Apr 12, 2015
-
-
Scott Lahteine authored
-
- Apr 09, 2015
-
-
Scott Lahteine authored
-
- Apr 08, 2015
-
-
Scott Lahteine authored
-
Scott Lahteine authored
- Set `de` to 0 when `position[E] = target[E]` - Address regression mention in #1846
-
- Apr 04, 2015
-
-
Scott Lahteine authored
-
Scott Lahteine authored
-
- Apr 03, 2015
-
-
Scott Lahteine authored
-
- Apr 02, 2015
-
-
Scott Lahteine authored
- Add comments documenting `thermal_runaway_protection` - Add an enum for the thermal runaway states - Add macros for temperature helper functions - Fix a glitch with the z probe sled in homeaxis
-
- Apr 01, 2015
-
-
Chris Roadfeldt authored
-
- Mar 31, 2015
-
-
Chris Roadfeldt authored
This rolls back to commit 06f767d6.
-
- Mar 30, 2015
-
-
AnHardt authored
Fix for #1460. Seems to work with only one extruder. Can't test this myself with more.
-
- Mar 29, 2015
-
-
Scott Lahteine authored
- Add some documentation to planner and stepper headers - Patch up RAMBO pins with undefs - Add `sync_plan_position` inline to set current XYZE - Swap indices in `extruder_offset` to fix initialization values
-
- Mar 27, 2015
-
-
Scott Lahteine authored
-
- Mar 21, 2015
-
-
Scott Lahteine authored
- Prefetch values used more than once
-
Scott Lahteine authored
- Use named axis indexes, `X_AXIS` etc. - Replace `block.steps_A` with block.steps[A]` - Replace `A_segment_time` with `segment_time[A]` - Add `A_AXIS`, `B_AXIS` for `COREXY` axes - Conditional compile based on `EXTRUDERS` - Add BLOCK_MOD macro for planner block indexes - Apply coding standards to `planner.h` and `planner.cpp` - Small optimizations of planner code - Update `stepper.cpp` for new `block` struct - Replace `memcpy` with loops, let the compiler unroll them - Make `movesplanned` into an inline function
-
- Mar 15, 2015
-
-
Edward Patel authored
-
Edward Patel authored
-
- Mar 14, 2015
-
-
Scott Lahteine authored
- Add BIT and TEST macros - Add _APPLY_ macros to stepper.cpp to help with consolidation - Consolidate code in stepper.cpp using macros - Apply standards in stepper.cpp - Use >= 0 instead of > -1 as a better semantic - Replace DUAL_Y_CARRIAGE with Y_DUAL_STEPPER_DRIVERS
-
- Mar 11, 2015
-
-
alexborro authored
The max acceleration limiting was in wrong place.
-
alexborro authored
Added option to set Travel Acceleration (non printing moves). The M204 options was a non sense (S for printing moves and T for retract moves). It has been changed to: P = Printing moves R = Retract only (no X, Y, Z) moves T = Travel (non printing) moves I will add this info o G-Code wiki in reprap.org. I also advise to put this info in Marlin next version changelog.
-
- Mar 07, 2015
-
-
maverikou authored
- Nonlinear auto bed leveling code (includes G29, G30, Z_RAISE_AFTER_PROBING). Cleaned it up to be a delta-specific AUTO_BED_LEVELING_GRID code path. - Allen key z-probe deployment and retraction code. Cleaned it up and added safety checks.
-