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: Improve checksum detection in get_raw_command_parameters()
Kevin O'Connor
2024-12-01
1
-1
/
+1
*
gcode: Some optimizations to get_raw_command_parameters()
Kevin O'Connor
2024-12-01
1
-10
/
+10
*
gcode: Use the same M117/M118 fixup for M23
Kevin O'Connor
2024-12-01
1
-2
/
+2
*
gcode: Fixup M117/M118 command identification in cmd_default()
Kevin O'Connor
2024-12-01
1
-7
/
+9
*
gcode: Improve handling of extended g-code commands with '*;#' characters
Kevin O'Connor
2024-12-01
1
-15
/
+11
*
gcode: Don't silently discard characters inside a command name
Kevin O'Connor
2024-12-01
1
-7
/
+5
*
gcode: Validate extended g-code command names
Kevin O'Connor
2024-12-01
1
-0
/
+4
*
gcode: Minor change to suppress python warning on '\s'
Kevin O'Connor
2024-07-11
1
-1
/
+1
*
gcode: expose status with available commands
Pedro Lamas
2023-12-11
1
-0
/
+13
*
gcode: Handle M117 and M118 commands that start with a special character
Kevin O'Connor
2022-01-18
1
-11
/
+10
*
gcode: Allow rename_existing also for register_mux_command (#4843)
Alex Zellner
2021-11-22
1
-3
/
+4
*
gcode_macro: Add "rawparams" pseudo-variable
Pedro Lamas
2021-11-19
1
-0
/
+16
*
gcode: Fix Python3 syntax error
Kevin O'Connor
2021-10-31
1
-2
/
+2
*
gcode: Use regular str() types for g-code commands on Python2
Kevin O'Connor
2021-10-31
1
-3
/
+3
*
gcode: Convert to Python3 string encoding
Kevin O'Connor
2021-10-01
1
-2
/
+2
*
gcode: Update gcode descriptions (#4335)
Stefan Dej
2021-06-02
1
-0
/
+1
*
gcode: Generate M115 output even if command not sent from gcode pseudo-terminal
Kevin O'Connor
2021-04-28
1
-1
/
+4
*
gcode: Move definition of CommandError and Coord from homing.py to gcode.py
Kevin O'Connor
2021-01-08
1
-4
/
+9
*
gcode: Don't log debugging output for unknown commands if command is blank
Kevin O'Connor
2020-09-17
1
-1
/
+3
*
gcode: Fix out-of-order cmd_M112 reference
Kevin O'Connor
2020-08-23
1
-1
/
+1
*
gcode_move: Move GCodeMove class from gcode.py to new extras module
Kevin O'Connor
2020-08-20
1
-272
/
+0
*
gcode: Split G0/G1 command handling to new gcode_move class
Kevin O'Connor
2020-08-20
1
-151
/
+165
*
toolhead: Move G4 and M400 commands from gcode.py to toolhead.py
Kevin O'Connor
2020-08-20
1
-8
/
+1
*
gcode: Convert get_status() last_xpos to use a namedtuple
Kevin O'Connor
2020-08-20
1
-4
/
+1
*
gcode: Remove unneeded base_xpos variables from get_status()
Kevin O'Connor
2020-08-20
1
-4
/
+0
*
gcode: Convert get_status() homing_xpos to use a namedtuple
Kevin O'Connor
2020-08-20
1
-3
/
+1
*
gcode: Remove unused move_xpos get_status() variables
Kevin O'Connor
2020-08-20
1
-4
/
+0
*
gcode: Remove "action_" commands from get_status() calls
Kevin O'Connor
2020-08-20
1
-12
/
+0
*
toolhead: Add a manual_move() helper function
Kevin O'Connor
2020-08-20
1
-0
/
+2
*
gcode: Automatically call reset_last_position() on a toolhead set_position()
Kevin O'Connor
2020-08-20
1
-1
/
+2
*
webhooks: Require a subscription to receive gcode output
Kevin O'Connor
2020-08-16
1
-19
/
+2
*
webhooks: Remove "method" parameter from webhook requests
Kevin O'Connor
2020-08-16
1
-14
/
+5
*
gcode: Fix error causing _dump_debug() to fail
Kevin O'Connor
2020-08-08
1
-7
/
+8
*
gcode: Separate IO handling to its own class
Kevin O'Connor
2020-08-06
1
-111
/
+127
*
gcode: Introduce add_early_printer_objects()
Kevin O'Connor
2020-08-06
1
-0
/
+3
*
gcode: Pass the pseudo-tty fd via the start_args system
Kevin O'Connor
2020-08-06
1
-2
/
+2
*
gcode: Allow handlers to be registered for all gcode output
Kevin O'Connor
2020-08-06
1
-0
/
+5
*
gcode: Only write to the gcode pseudo-tty if it appears to be active
Kevin O'Connor
2020-08-06
1
-8
/
+11
*
gcode: Report the final print_time in debuginput mode
Kevin O'Connor
2020-07-30
1
-0
/
+2
*
klippy: return message category in get_state_message()
Arksine
2020-06-24
1
-2
/
+2
*
gcode: add webhooks support
Arksine
2020-06-24
1
-0
/
+27
*
gcode: Make it clear that gcode.get_status() can be called without eventtime
Kevin O'Connor
2020-05-26
1
-1
/
+1
*
gcode: Move "ok" tracking to GCodeCommand class
Kevin O'Connor
2020-05-05
1
-27
/
+17
*
gcode: Remove parsing helpers from main gcode class
Kevin O'Connor
2020-05-05
1
-16
/
+0
*
gcode: Use new GCodeCommand wrappers in command handlers
Kevin O'Connor
2020-05-05
1
-82
/
+80
*
gcode: Create new wrapper class for gcode command parameters
Kevin O'Connor
2020-05-05
1
-50
/
+89
*
gcode: Only call position_with_transform() when printer is ready
Kevin O'Connor
2020-05-02
1
-1
/
+2
*
heater: Move M105 command handling from gcode.py to heater.py
Kevin O'Connor
2020-04-25
1
-39
/
+15
*
gcode: Rename respond() to respond_raw()
Kevin O'Connor
2020-04-24
1
-6
/
+6
*
gcode: Don't export respond_error()
Kevin O'Connor
2020-04-24
1
-6
/
+6
[next]