aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/klippy.py
Commit message (Expand)AuthorAgeFilesLines
...
* klippy: Do not start stats timer until after connect completesKevin O'Connor2017-09-191-7/+3
* fan: Allow heater_fan to work with heater_bedKevin O'Connor2017-09-071-6/+7
* mcu: Provide some further help on common MCU shutdown errorsKevin O'Connor2017-09-051-2/+1
* toolhead: Eliminate set_max_jerk() from kinematic classesKevin O'Connor2017-09-031-2/+2
* klippy: Move restart logic into Printer() classKevin O'Connor2017-08-261-26/+15
* klippy: Rename internal functions so that they are prefaced with "_"Kevin O'Connor2017-08-261-8/+8
* chipmisc: Add support for statically configured output pinsKevin O'Connor2017-08-261-2/+2
* pins: Support registering arbitrary chips that supply configurable pinsKevin O'Connor2017-08-251-6/+6
* klippy: Store printer startup parameters in new "start_args" dictionaryKevin O'Connor2017-08-251-50/+31
* fan: Add support for heater_fan objectsKevin O'Connor2017-07-171-0/+3
* build: Request python2 for all directly executed python binariesKevin O'Connor2017-06-271-1/+1
* klippy: Make sure to always sleep before retrying next stats() callKevin O'Connor2017-06-151-2/+2
* klippy: Use newer "except XYZError as e" python syntaxKevin O'Connor2017-06-101-4/+4
* klippy: Allow each module to define their config sectionsKevin O'Connor2017-06-091-11/+8
* klippy: Prefer python dictionary comprehension to dict() callKevin O'Connor2017-06-061-1/+1
* queuelogger: Add critical information to each logfile on rolloverKevin O'Connor2017-05-011-13/+22
* klippy: Don't log stats when the printer is idleKevin O'Connor2017-04-141-8/+11
* klippy: Remove CLEAR_SHUTDOWN commandKevin O'Connor2017-04-131-3/+3
* mcu: Support reset commandKevin O'Connor2017-04-131-1/+1
* klippy: Support minimum/maximum value checks on configuration variablesKevin O'Connor2017-04-111-6/+27
* klippy: Log python info at start of logKevin O'Connor2017-03-161-0/+2
* klippy: Eliminate high-level build_config phaseKevin O'Connor2017-03-131-12/+6
* gcode: Eliminate build_config() methodKevin O'Connor2017-03-131-2/+1
* klippy: Support FIRMWARE_RESTART commandKevin O'Connor2017-03-081-10/+26
* klippy: Log the type of cpu the host is running onKevin O'Connor2017-02-121-0/+1
* klippy: Fix omission causing gcode dump to not functionKevin O'Connor2017-02-121-2/+4
* reactor: Use the system monotonic clock instead of the normal system clockKevin O'Connor2017-02-061-1/+5
* klippy: Increase precision of reported statistics timestampKevin O'Connor2017-01-101-1/+1
* klippy: Warn the user on common errors due to old firmwareKevin O'Connor2017-01-101-0/+14
* gcode: Add support for M115 commandKevin O'Connor2016-12-281-3/+5
* klippy: Log the contents of the config file at startupKevin O'Connor2016-12-241-0/+10
* klippy: Log the host software git version at startupKevin O'Connor2016-12-241-0/+2
* gcode: Add a "STATUS" commandKevin O'Connor2016-12-211-1/+1
* klippy: Update config error message - use "RESTART" when ready to continueKevin O'Connor2016-12-211-2/+3
* klippy: stats() method must check that mcu and toolhead classes existKevin O'Connor2016-12-011-5/+10
* klippy: Fix typo causing missing stats on 'exit_eof' caseKevin O'Connor2016-12-011-1/+1
* gcode: Add support for CLEAR_SHUTDOWN commandKevin O'Connor2016-12-011-3/+3
* klippy: Add ability to restart the host softwareKevin O'Connor2016-11-301-13/+30
* mcu: Detect if the communication channel to the firmware is lostKevin O'Connor2016-11-301-0/+4
* gcode: Don't dump the message log directly from set_printer_ready()Kevin O'Connor2016-11-301-0/+7
* klippy: Validate that options in the config file existKevin O'Connor2016-11-301-0/+17
* klippy: Add ConfigWrapper.getchoice methodKevin O'Connor2016-11-301-0/+7
* klippy: Throw an exception if any required config parameter is missingKevin O'Connor2016-11-301-15/+22
* mcu: Raise a config error on an invalid pin name in the config fileKevin O'Connor2016-11-301-0/+1
* klippy: Report an error if the config file does not existKevin O'Connor2016-11-301-1/+8
* klippy: Improve error reporting during connectKevin O'Connor2016-11-301-10/+56
* gcode: Support reading from gcode input before mcu is readyKevin O'Connor2016-11-301-3/+3
* klippy: separate initial config file load into load_config() methodKevin O'Connor2016-11-301-19/+23
* klippy: Create the /tmp/printer pseudo tty before opening config fileKevin O'Connor2016-11-301-13/+10
* klippy: Defer calling mcu.connect_file() to connect() methodKevin O'Connor2016-11-301-5/+8