Skip to content

Commit fb37b00

Browse files
authored
Merge pull request #588 from czbiohub-sf/cell_finder_min_pressure_pull
Bugfix: Use the min necessary pressure during cell finder as opposed to the max allowable
2 parents 375211b + adbbd4e commit fb37b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ulc_mm_package/hardware/scope_routines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ def find_cells_routine(
516516
mscope.pneumatic_module.getAmbientPressure()
517517
- mscope.pneumatic_module.getPressure()[0]
518518
)
519-
while curr_pressure_gauge < processing_constants.MAX_VACUUM_PRESSURE:
519+
while curr_pressure_gauge < MIN_PRESSURE_DIFF:
520520
# Pass in a flow_error=1.0 to pull the syringe down
521521
try:
522522
flow_controller.adjustSyringe(flow_error=1.0)

0 commit comments

Comments
 (0)