Skip to content

Commit

Permalink
clarified what is not homed in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
moggieuk committed Dec 9, 2024
1 parent 6cf8f30 commit 45d86cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extras/mmu/mmu.py
Original file line number Diff line number Diff line change
Expand Up @@ -3364,7 +3364,7 @@ def check_if_bypass(self):

def check_if_not_homed(self):
if not self.selector.is_homed:
self.log_error("Operation not possible. MMU is not homed")
self.log_error("Operation not possible. MMU selector is not homed")
return True
return False

Expand Down Expand Up @@ -5586,7 +5586,7 @@ def _unload_tool(self, form_tip=None, runout=False):

def _auto_home(self, tool=0):
if not self.selector.is_homed or self.tool_selected == self.TOOL_GATE_UNKNOWN:
self.log_info("MMU not homed, will home before continuing")
self.log_info("MMU selector not homed, will home before continuing")
self.home(tool)
elif self.filament_pos == self.FILAMENT_POS_UNKNOWN and self.selector.is_homed:
self.recover_filament_pos(message=True)
Expand Down

0 comments on commit 45d86cd

Please sign in to comment.