Skip to content

Commit

Permalink
-Upgrade yamcs version to 5.9.8
Browse files Browse the repository at this point in the history
-Bump version number
  • Loading branch information
lorenzo-gomez-windhover committed Nov 25, 2024
1 parent c90087a commit 8bf2fd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 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-cfs-evs</artifactId>
<version>1.2.3</version>
<version>1.3.0</version>

<packaging>jar</packaging>
<name>YAMCS plugin for the Core Flight System (CFS) Event Services (EVS) application.</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
Original file line number Diff line number Diff line change
Expand Up @@ -721,12 +721,10 @@ 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 8bf2fd4

Please sign in to comment.