Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable af button for now #154

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ private void createUserInterface() {
btnStepUp_ = new Button(Icons.ARROW_UP);
btnStepDown_ = new Button(Icons.ARROW_DOWN);

btnRunAutofocus_.setEnabled(false);

switch (geometryType) {
case DISPIM:
add(lblSlope, "");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ public boolean isRunning() {
}

private void runAcquisitionSCAPE() {
// System.out.println("nTimePoints: " + acqSettings_.numTimePoints());
// System.out.println(asb_);
// System.out.println(asb_.build());
final boolean isPolling = frame_.getNavigationPanel().isPolling();
Expand Down Expand Up @@ -777,7 +778,7 @@ private boolean doHardwareCalculationsSCAPE(PLogicDISPIM plc) {
// make sure slice timings are up-to-date
final double sliceDuration1 = getSliceDuration(asb_.timingSettingsBuilder());
asb_.timingSettingsBuilder().sliceDuration(sliceDuration1);

recalculateSliceTiming(asb_);
System.out.println("after recalculateSliceTiming: " + asb_.timingSettingsBuilder());

Expand Down