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
/
gcode.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gcode: M117 fix
Arksine
2018-08-22
1
-0
/
+6
*
kinematics: Convert get_rails() method to get_steppers()
Kevin O'Connor
2018-07-16
1
-4
/
+1
*
query_endstops: Move QUERY_ENDSTOP command to it own extras/ module
Kevin O'Connor
2018-07-16
1
-8
/
+1
*
toolhead: Move kinematic modules to new kinematics/ directory
Kevin O'Connor
2018-07-12
1
-3
/
+3
*
gcode: fix for GET_POSITION (#454)
Eric Callahan
2018-07-03
1
-1
/
+4
*
gcode: Add run_script() method that is valid from non-command contexts
Kevin O'Connor
2018-06-30
1
-0
/
+11
*
gcode: Rename run_script() to run_script_from_command()
Kevin O'Connor
2018-06-30
1
-3
/
+3
*
delta: Rename get_position() to calc_position()
Kevin O'Connor
2018-06-22
1
-1
/
+1
*
stepper: Don't peak into PrinterStepper members
Kevin O'Connor
2018-06-22
1
-3
/
+2
*
stepper: Add a get_name() method to PrinterStepper
Kevin O'Connor
2018-06-22
1
-2
/
+3
*
klippy: Return an error code if batch input results in an error
Kevin O'Connor
2018-06-16
1
-1
/
+3
*
gcode: mux command is already registered error print fixed
cruwaller
2018-06-01
1
-1
/
+1
*
gcode: Apply SET_GCODE_OFFSET to next move command
Kevin O'Connor
2018-05-29
1
-1
/
+3
*
gcode: Reset extrude_factor and extruder position on a tool change
Kevin O'Connor
2018-05-20
1
-0
/
+2
*
gcode: Raise an error if a duplicate command is registered
Kevin O'Connor
2018-05-20
1
-0
/
+2
*
gcode: Add ability to register a "mux" command
Kevin O'Connor
2018-05-20
1
-0
/
+23
*
gcode: Add minval/maxval/above/below options to get_X parsers
Kevin O'Connor
2018-04-20
1
-29
/
+40
*
gcode: Add a SET_GCODE_OFFSET command
Kevin O'Connor
2018-04-20
1
-1
/
+14
*
gcode: Rename homing_add to homing_offset
Kevin O'Connor
2018-04-20
1
-17
/
+17
*
pid_calibrate: Move PID calibration logic from heater.py to new file
Kevin O'Connor
2018-03-18
1
-13
/
+1
*
gcode: Position returned by M114 should be relative to last G92
Kevin O'Connor
2018-03-15
1
-13
/
+40
*
gcode: On a multi-line error message, report the first line twice
Kevin O'Connor
2018-03-12
1
-2
/
+2
*
display: Add initial support for LCD screens attached to an MCU
Kevin O'Connor
2018-03-06
1
-0
/
+3
*
virtual_sdcard: Initial support for virtual sdcard
Kevin O'Connor
2018-02-11
1
-1
/
+12
*
gcode: Introduce request_restart() method
Kevin O'Connor
2018-02-11
1
-20
/
+12
*
gcode: Extract special cases from process_data()
Kevin O'Connor
2018-02-11
1
-20
/
+28
*
klippy: Allow any stats producer to determine when stats are needed
Kevin O'Connor
2018-02-05
1
-1
/
+1
*
gcode: Make sure need_ack is always restored on run_script()
Kevin O'Connor
2018-02-02
1
-3
/
+5
*
gcode: Keep reading input to check for M112 (emergency stop)
Kevin O'Connor
2018-02-02
1
-11
/
+26
*
gcode: Propagate errors from run_script()
Kevin O'Connor
2018-02-01
1
-0
/
+4
*
gcode: Ack even empty lines
Kevin O'Connor
2018-02-01
1
-2
/
+2
*
bed_tilt: Add support for automatic bed tilt move transformation
Kevin O'Connor
2018-01-28
1
-3
/
+14
*
klippy: Support generic printer_state() and stats() callbacks
Kevin O'Connor
2018-01-28
1
-9
/
+12
*
klippy: Add access methods and avoid peeking into the printer classes
Kevin O'Connor
2018-01-28
1
-5
/
+5
*
gcode: Add a run_script() helper method to run g-code scripts
Kevin O'Connor
2018-01-28
1
-4
/
+4
*
gcode: Extend register_command() so that it can also unregister a command
Kevin O'Connor
2018-01-28
1
-0
/
+6
*
gcode: Use reset_last_position() from cmd_G28()
Kevin O'Connor
2018-01-16
1
-2
/
+1
*
gcode: Add support for M221 (set extrude factor) g-code command
Kevin O'Connor
2018-01-03
1
-12
/
+32
*
gcode: Add support for M220 (set speed factor) g-code command
Kevin O'Connor
2018-01-03
1
-4
/
+11
*
gcode: Don't wait for temperature if the temperature is disabled
Kevin O'Connor
2018-01-03
1
-1
/
+1
*
gcode: Dump internal g-code state in dump_debug()
Kevin O'Connor
2017-12-21
1
-0
/
+7
*
gcode: Group similar G-Code commands together
Kevin O'Connor
2017-12-21
1
-44
/
+49
*
homing: Directly interact with the kinematic class on query_endstops()
Kevin O'Connor
2017-12-06
1
-7
/
+2
*
homing: Directly interact with the kinematic class when homing
Kevin O'Connor
2017-12-06
1
-2
/
+2
*
gcode: Move SET_SERVO command from gcode.py to chipmisc.py
Kevin O'Connor
2017-12-06
1
-14
/
+6
*
gcode: Rework gcode handler setup to allow dynamic command registration
Kevin O'Connor
2017-12-06
1
-17
/
+21
*
gcode: Add a get_str() method
Kevin O'Connor
2017-12-06
1
-17
/
+10
*
gcode: Simplify exception handling
Kevin O'Connor
2017-12-06
1
-19
/
+16
*
gcode: Always allow M112 command
Kevin O'Connor
2017-12-06
1
-0
/
+1
*
klippy: Rework shutdown handling
Kevin O'Connor
2017-10-12
1
-21
/
+21
[next]