mirror of https://github.com/Desuuuu/klipper.git
mcu: Support reserving move queue slots
Signed-off-by: Pascal Pieper <accounts@pascalpieper.de> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
697412d25c
commit
99fe290753
|
@ -442,6 +442,7 @@ class MCU:
|
||||||
ffi_main, self._ffi_lib = chelper.get_ffi()
|
ffi_main, self._ffi_lib = chelper.get_ffi()
|
||||||
self._max_stepper_error = config.getfloat('max_stepper_error', 0.000025,
|
self._max_stepper_error = config.getfloat('max_stepper_error', 0.000025,
|
||||||
minval=0.)
|
minval=0.)
|
||||||
|
self._reserved_move_slots = 0
|
||||||
self._stepqueues = []
|
self._stepqueues = []
|
||||||
self._steppersync = None
|
self._steppersync = None
|
||||||
# Stats
|
# Stats
|
||||||
|
@ -588,11 +589,13 @@ class MCU:
|
||||||
self._send_config(config_params['crc'])
|
self._send_config(config_params['crc'])
|
||||||
# Setup steppersync with the move_count returned by get_config
|
# Setup steppersync with the move_count returned by get_config
|
||||||
move_count = config_params['move_count']
|
move_count = config_params['move_count']
|
||||||
|
if move_count < self._reserved_move_slots:
|
||||||
|
raise error("Too few moves available on MCU '%s'" % (self._name,))
|
||||||
ffi_main, ffi_lib = chelper.get_ffi()
|
ffi_main, ffi_lib = chelper.get_ffi()
|
||||||
self._steppersync = ffi_main.gc(
|
self._steppersync = ffi_main.gc(
|
||||||
ffi_lib.steppersync_alloc(self._serial.serialqueue,
|
ffi_lib.steppersync_alloc(self._serial.serialqueue,
|
||||||
self._stepqueues, len(self._stepqueues),
|
self._stepqueues, len(self._stepqueues),
|
||||||
move_count),
|
move_count-self._reserved_move_slots),
|
||||||
ffi_lib.steppersync_free)
|
ffi_lib.steppersync_free)
|
||||||
ffi_lib.steppersync_set_time(self._steppersync, 0., self._mcu_freq)
|
ffi_lib.steppersync_set_time(self._steppersync, 0., self._mcu_freq)
|
||||||
# Log config information
|
# Log config information
|
||||||
|
@ -657,6 +660,8 @@ class MCU:
|
||||||
return self.print_time_to_clock(t) + slot
|
return self.print_time_to_clock(t) + slot
|
||||||
def register_stepqueue(self, stepqueue):
|
def register_stepqueue(self, stepqueue):
|
||||||
self._stepqueues.append(stepqueue)
|
self._stepqueues.append(stepqueue)
|
||||||
|
def request_move_queue_slot(self):
|
||||||
|
self._reserved_move_slots += 1
|
||||||
def seconds_to_clock(self, time):
|
def seconds_to_clock(self, time):
|
||||||
return int(time * self._mcu_freq)
|
return int(time * self._mcu_freq)
|
||||||
def get_max_stepper_error(self):
|
def get_max_stepper_error(self):
|
||||||
|
|
Loading…
Reference in New Issue