diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-02-20 13:31:38 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-02-27 10:39:46 -0500 |
commit | 8312843bbe82984d299d65615fc32a5b6c49fc13 (patch) | |
tree | 7533c926451bde91eac7103740b670c10dc2ca39 /klippy/extras/tmc5160.py | |
parent | 9c9f78037b359c40d393b51f2694049c02a48ab6 (diff) | |
download | kutter-8312843bbe82984d299d65615fc32a5b6c49fc13.tar.gz kutter-8312843bbe82984d299d65615fc32a5b6c49fc13.tar.xz kutter-8312843bbe82984d299d65615fc32a5b6c49fc13.zip |
tmc5160: Add set_current()/get_current() helpers to TMC5160CurrentHelper
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/tmc5160.py')
-rw-r--r-- | klippy/extras/tmc5160.py | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/klippy/extras/tmc5160.py b/klippy/extras/tmc5160.py index b4ef6a68..4d6f921a 100644 --- a/klippy/extras/tmc5160.py +++ b/klippy/extras/tmc5160.py @@ -272,31 +272,35 @@ class TMC5160CurrentHelper: if not globalscaler: globalscaler = 256 bits = self.fields.get_field(field_name) - current = (globalscaler * (bits + 1) * VREF - / (256. * 32. * math.sqrt(2.) * self.sense_resistor)) - return round(current, 2) + return (globalscaler * (bits + 1) * VREF + / (256. * 32. * math.sqrt(2.) * self.sense_resistor)) + def get_current(self): + run_current = self._calc_current_from_field("IRUN") + hold_current = self._calc_current_from_field("IHOLD") + return run_current, hold_current, MAX_CURRENT + def set_current(self, run_current, hold_current, print_time): + irun, ihold = self._calc_current(run_current, hold_current) + self.fields.set_field("IHOLD", ihold) + val = self.fields.set_field("IRUN", irun) + self.mcu_tmc.set_register("IHOLD_IRUN", val, print_time) cmd_SET_TMC_CURRENT_help = "Set the current of a TMC driver" def cmd_SET_TMC_CURRENT(self, gcmd): + prev_run_current, prev_hold_current, max_current = self.get_current() run_current = gcmd.get_float('CURRENT', None, - minval=0., maxval=MAX_CURRENT) + minval=0., maxval=max_current) hold_current = gcmd.get_float('HOLDCURRENT', None, - above=0., maxval=MAX_CURRENT) + above=0., maxval=max_current) if run_current is None and hold_current is None: # Query only - run_current = self._calc_current_from_field("IRUN") - hold_current = self._calc_current_from_field("IHOLD") gcmd.respond_info("Run Current: %0.2fA Hold Current: %0.2fA" - % (run_current, hold_current)) + % (prev_run_current, prev_hold_current)) return if run_current is None: - run_current = self._calc_current_from_field("IRUN") + run_current = prev_run_current if hold_current is None: - hold_current = self._calc_current_from_field("IHOLD") + hold_current = prev_hold_current print_time = self.printer.lookup_object('toolhead').get_last_move_time() - irun, ihold = self._calc_current(run_current, hold_current) - self.fields.set_field("IHOLD", ihold) - val = self.fields.set_field("IRUN", irun) - self.mcu_tmc.set_register("IHOLD_IRUN", val, print_time) + self.set_current(run_current, hold_current, print_time) ###################################################################### |