mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +00:00
Merge branch 'main' of https://github.com/douggillespie/PAMGuard into main
This commit is contained in:
commit
379cd61afa
2
pom.xml
2
pom.xml
@ -805,7 +805,7 @@
|
||||
<dependency>
|
||||
<groupId>pamguard.org</groupId>
|
||||
<artifactId>x3</artifactId>
|
||||
<version>2.2.0</version>
|
||||
<version>2.2.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- https://mvnrepository.com/artifact/it.sauronsoftware/jave -->
|
||||
|
4
repo/pamguard/org/x3/2.2.1/_remote.repositories
Normal file
4
repo/pamguard/org/x3/2.2.1/_remote.repositories
Normal file
@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Mon Apr 24 10:32:52 BST 2023
|
||||
x3-2.2.1.jar>=
|
||||
x3-2.2.1.pom>=
|
BIN
repo/pamguard/org/x3/2.2.1/x3-2.2.1.jar
Normal file
BIN
repo/pamguard/org/x3/2.2.1/x3-2.2.1.jar
Normal file
Binary file not shown.
9
repo/pamguard/org/x3/2.2.1/x3-2.2.1.pom
Normal file
9
repo/pamguard/org/x3/2.2.1/x3-2.2.1.pom
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>pamguard.org</groupId>
|
||||
<artifactId>x3</artifactId>
|
||||
<version>2.2.1</version>
|
||||
<description>POM was created from install:install-file</description>
|
||||
</project>
|
@ -180,6 +180,7 @@ public abstract class FileListWorker<T extends File> implements PamWorkWrapper<F
|
||||
T newFile = createFile(moreFiles[i]);
|
||||
eachFileTask(newFile);
|
||||
newFileList.addFile(newFile);
|
||||
Debug.out.println("Adding file " + newFile.getAbsolutePath());
|
||||
if (i%100 == 0) {
|
||||
sayProgress(pamWorker, newFileList, folder);
|
||||
}
|
||||
|
@ -2083,6 +2083,9 @@ public class PamDataBlock<Tunit extends PamDataUnit> extends PamObservable {
|
||||
/*
|
||||
* Doesnt notify it's own parent to avoid an infinite loop
|
||||
*/
|
||||
if (Float.isNaN(sampleRate)) {
|
||||
System.out.println("NaN sample rate being set in " + getLongDataName());
|
||||
}
|
||||
if (notify) {
|
||||
for (int i = 0; i < countObservers(); i++) {
|
||||
if (getPamObserver(i).getObserverObject() != parentProcess) {
|
||||
|
@ -1086,6 +1086,9 @@ public class ClickControl extends PamControlledUnit implements PamSettings {
|
||||
}
|
||||
|
||||
public ClickDisplayManager getDisplayManager(){
|
||||
if (tabPanelControl == null) {
|
||||
return null;
|
||||
}
|
||||
return tabPanelControl.clickDisplayManager;
|
||||
}
|
||||
|
||||
|
@ -28,6 +28,7 @@ import java.awt.Component;
|
||||
|
||||
import Acquisition.AcquisitionControl;
|
||||
import Acquisition.DaqSystem;
|
||||
import PamController.PamControlledUnitSettings;
|
||||
|
||||
/**
|
||||
* @author SCANS
|
||||
@ -102,6 +103,18 @@ public class STAcquisitionControl extends AcquisitionControl {
|
||||
return stDaqSystem;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean restoreSettings(PamControlledUnitSettings pamControlledUnitSettings) {
|
||||
// TODO Auto-generated method stub
|
||||
boolean ok = super.restoreSettings(pamControlledUnitSettings);
|
||||
if (Float.isNaN(this.getAcquisitionParameters().sampleRate)) {
|
||||
System.out.println("Nan sample rate read back in sound trap data control. ");
|
||||
this.getAcquisitionParameters().sampleRate = 384000.f;
|
||||
}
|
||||
|
||||
return ok;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -87,6 +87,12 @@ public class STAcquisitionProcess extends AcquisitionProcess {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public float getSampleRate() {
|
||||
float fs = super.getSampleRate();
|
||||
return fs;
|
||||
}
|
||||
|
||||
@Override
|
||||
/**
|
||||
@ -150,6 +156,7 @@ public class STAcquisitionProcess extends AcquisitionProcess {
|
||||
public boolean isStalled() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -146,6 +146,10 @@ public class STClickControl extends ClickControl {
|
||||
*/
|
||||
public void updateDisplayScrollers(long timeMillis) {
|
||||
ClickDisplayManager dispManager = getDisplayManager();
|
||||
if (dispManager == null) {
|
||||
// happens in -nogui operation.
|
||||
return;
|
||||
}
|
||||
ArrayList<ClickDisplay> dispList = dispManager.getWindowList();
|
||||
for (ClickDisplay display : dispList) {
|
||||
if (display instanceof ClickBTDisplay) {
|
||||
|
Loading…
Reference in New Issue
Block a user