diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-03-12 22:43:05 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-03-13 00:38:17 -0400 |
commit | d21b9280f029f1c65d3dac9310eb00090dd8c531 (patch) | |
tree | cc3b34c2ecc0b277470dfe567a40b144cb7c3174 /klippy/extruder.py | |
parent | 92649332ce1f4ad7445f5e97ee6d24c79eccece9 (diff) | |
download | kutter-d21b9280f029f1c65d3dac9310eb00090dd8c531.tar.gz kutter-d21b9280f029f1c65d3dac9310eb00090dd8c531.tar.xz kutter-d21b9280f029f1c65d3dac9310eb00090dd8c531.zip |
klippy: Eliminate high-level build_config phase
Now that the mcu objects can be created prior to connecting to the
mcu, it is no longer necessary to separate the init and build_config
phases in the high-level code. Move the mcu objection creation from
the build_config phase to the init phase and eliminate the
build_config phase.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extruder.py')
-rw-r--r-- | klippy/extruder.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/klippy/extruder.py b/klippy/extruder.py index c59bee14..f2c92073 100644 --- a/klippy/extruder.py +++ b/klippy/extruder.py @@ -33,10 +33,7 @@ class PrinterExtruder: 'max_extrude_only_velocity', max_velocity * self.max_extrude_ratio) self.max_e_accel = self.config.getfloat( 'max_extrude_only_accel', max_accel * self.max_extrude_ratio) - def build_config(self): - self.heater.build_config() self.stepper.set_max_jerk(9999999.9, 9999999.9) - self.stepper.build_config() def motor_off(self, move_time): self.stepper.motor_enable(move_time, 0) self.need_motor_enable = True |