index
:
kutter
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
klippy
/
toolhead.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gcode_move: Move GCodeMove class from gcode.py to new extras module
Kevin O'Connor
2020-08-20
1
-1
/
+2
*
toolhead: Move G4 and M400 commands from gcode.py to toolhead.py
Kevin O'Connor
2020-08-20
1
-1
/
+10
*
toolhead: Remove unused get_stats() data
Kevin O'Connor
2020-08-20
1
-10
/
+2
*
toolhead: Add a manual_move() helper function
Kevin O'Connor
2020-08-20
1
-0
/
+7
*
gcode: Automatically call reset_last_position() on a toolhead set_position()
Kevin O'Connor
2020-08-20
1
-0
/
+1
*
toolhead: report velocity and accel via get_status
Arksine
2020-08-01
1
-1
/
+5
*
toolhead: Handle flush_step_generation() call after dwell()
Kevin O'Connor
2020-06-01
1
-0
/
+1
*
klippy: Rename try_load_module() to load_object()
Kevin O'Connor
2020-05-08
1
-4
/
+3
*
toolhead: Use new GCodeCommand wrappers
Kevin O'Connor
2020-05-05
1
-23
/
+19
*
stepcompress: Implement a step+dir+step filter
Kevin O'Connor
2020-03-13
1
-3
/
+4
*
Revert "itersolve: Implement a step+dir+step filter"
Kevin O'Connor
2020-03-05
1
-4
/
+3
*
itersolve: Implement a step+dir+step filter
Kevin O'Connor
2020-03-04
1
-3
/
+4
*
toolhead: Minor comment addition to calc_junction()
Kevin O'Connor
2020-02-28
1
-0
/
+2
*
homing: Replace notify callback with a completion
Kevin O'Connor
2020-02-19
1
-4
/
+2
*
toolhead: Add register_lookahead_callback() method
Kevin O'Connor
2020-01-03
1
-0
/
+13
*
toolhead: Report which axes are homed via get_status()
Kevin O'Connor
2019-11-24
1
-5
/
+7
*
toolhead: Report the current extruder from the get_status() method
Kevin O'Connor
2019-11-24
1
-0
/
+1
*
force_move: Make sure to flush step generation queue after each move
Kevin O'Connor
2019-11-24
1
-0
/
+2
*
extruder: Remove support for lookahead() method
Kevin O'Connor
2019-11-21
1
-16
/
+4
*
toolhead: Support step generation in lead up to and after stepper activity
Kevin O'Connor
2019-11-21
1
-17
/
+39
*
toolhead: Rename _full_flush() to flush_step_generation() and use globally
Kevin O'Connor
2019-11-21
1
-6
/
+7
*
toolhead: No need to transition to Flushed state before entering Drip state
Kevin O'Connor
2019-11-21
1
-3
/
+5
*
toolhead: Don't report buffer_time stat during homing
Kevin O'Connor
2019-11-15
1
-0
/
+2
*
toolhead: Don't call _process_moves() if no moves present
Kevin O'Connor
2019-11-15
1
-1
/
+3
*
gcode: Remove explicit active extruder tracking
Kevin O'Connor
2019-11-13
1
-4
/
+1
*
stepper_enable: Move motor_off() logic to stepper_enable.py
Kevin O'Connor
2019-11-12
1
-14
/
+0
*
toolhead: Clear any pending pauses when a shutdown occurs
Kevin O'Connor
2019-11-07
1
-4
/
+8
*
toolhead: Rename register_move_handler() to register_step_generator()
Kevin O'Connor
2019-11-07
1
-5
/
+5
*
toolhead: Calculate and store axes_r in move class
Kevin O'Connor
2019-11-06
1
-7
/
+12
*
toolhead: Simplify set_junction() code
Kevin O'Connor
2019-11-06
1
-7
/
+7
*
trapq: Use separate 'move' entries for accel, cruise, and decel phases
Kevin O'Connor
2019-11-06
1
-1
/
+2
*
toolhead: Flush trapezoid velocity queue in batches
Kevin O'Connor
2019-11-06
1
-73
/
+70
*
trapq: Remove move_fill()
Kevin O'Connor
2019-11-06
1
-7
/
+3
*
toolhead: Remove kinematic move() call
Kevin O'Connor
2019-11-06
1
-1
/
+0
*
trapq: Initial support for building a queue of trapezoidal velocity moves
Kevin O'Connor
2019-11-06
1
-6
/
+18
*
tuning_tower: Tool for tuning parameters based on print Z height
Kevin O'Connor
2019-10-01
1
-0
/
+1
*
toolhead: Fix velocity jumps in accel_to_decel lookahead processing
Kevin O'Connor
2019-09-26
1
-2
/
+3
*
toolhead: Fix homing moves not apply kinematic acceleration limits
Kevin O'Connor
2019-09-01
1
-2
/
+7
*
toolhead: No need to build entire look-ahead queue before homing
Kevin O'Connor
2019-07-18
1
-12
/
+6
*
toolhead: Delay calculating homing print_time until ready to move
Kevin O'Connor
2019-07-12
1
-1
/
+5
*
toolhead: Remove no longer needed reset_print_time()
Kevin O'Connor
2019-07-10
1
-8
/
+2
*
homing: Implement homing via new toolhead "drip" movement
Kevin O'Connor
2019-07-10
1
-6
/
+60
*
toolhead: Change the code to use more explicit state transitions
Kevin O'Connor
2019-07-10
1
-27
/
+37
*
toolhead: Just warn if M204 doesn't contain valid S, P, or T
Kevin O'Connor
2019-06-21
1
-3
/
+7
*
toolhead: Commands should still pause even when sync_print_time
Kevin O'Connor
2019-06-09
1
-2
/
+3
*
gcode: "gcode_position" and toolhead "position" as get_status() named tuple
Kevin O'Connor
2019-06-04
1
-0
/
+1
*
gcode: Change respond_info() to log by default
Kevin O'Connor
2019-03-04
1
-1
/
+1
*
toolhead: Wrap code to 80 columns
Kevin O'Connor
2019-02-27
1
-5
/
+5
*
gcode: Use an event to handle restart request actions
Kevin O'Connor
2019-02-25
1
-0
/
+4
*
manual_stepper: Add an "extras" module for manually controlling a stepper
Kevin O'Connor
2019-02-12
1
-0
/
+1
[next]