Skip to content

Commit

Permalink
-Upgrade yamcs to 5.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo-gomez-windhover committed Nov 26, 2024
1 parent 4e5c4b8 commit 7102f22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.windhoverlabs</groupId>
<artifactId>yamcs-gdl90</artifactId>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.1-SNAPSHOT</version>

<packaging>jar</packaging>
<name>YAMCS plugin for GDL90 standard.</name>

<properties>
<yamcsVersion>5.8.7</yamcsVersion>
<yamcsVersion>5.9.8</yamcsVersion>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/com/windhoverlabs/yamcs/gdl90/GDL90Link.java
Original file line number Diff line number Diff line change
Expand Up @@ -2214,12 +2214,11 @@ public void setupSystemParameters(SystemParametersService sysParamCollector) {
}

@Override
public List<ParameterValue> getSystemParameters() {
long time = getCurrentTime();
public List<ParameterValue> getSystemParameters(long gentime) {

ArrayList<ParameterValue> list = new ArrayList<>();
try {
collectSystemParameters(time, list);
collectSystemParameters(gentime, list);
} catch (Exception e) {
log.error("Exception caught when collecting link system parameters", e);
}
Expand Down

0 comments on commit 7102f22

Please sign in to comment.