Skip to content

Commit

Permalink
undo change to api
Browse files Browse the repository at this point in the history
  • Loading branch information
andySigler committed Dec 20, 2024
1 parent b383185 commit 73fc0a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions api/src/opentrons/hardware_control/backends/ot3controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -823,10 +823,9 @@ def _build_home_pipettes_runner(
if not pipette_axes:
return None

# FIXME: make this configurable as being different from discontinuity
speed_settings = {
OT3AxisKind.P: 10 if gantry_load == GantryLoad.LOW_THROUGHPUT else 5,
}
speed_settings = self._configuration.motion_settings.max_speed_discontinuity[
gantry_load
]
move_groups: List[MoveGroup] = self._build_axes_home_groups(
pipette_axes, speed_settings
)
Expand Down
2 changes: 1 addition & 1 deletion hardware-testing/hardware_testing/gravimetric/trial.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def _finish_test(
# there are WAY too many tips on a 96ch pipette
# so drop them incase something bad happened during the test run
if resources.pipette.channels == 96 and resources.pipette.has_tip:
resources.ctx.home()
resources.pipette._retract()
if resources.pipette.current_volume > 0:
ui.print_info("dispensing liquid to trash")
trash_container = resources.pipette.trash_container
Expand Down

0 comments on commit 73fc0a5

Please sign in to comment.