Skip to content

Commit b651db8

Browse files
authored
Merge pull request #410 from sy-c/master
v0.42.3
2 parents c828f1a + d6642a5 commit b651db8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

doc/releaseNotes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ This file describes the main feature changes for released versions of ReadoutCar
4040
## v0.42.2 - 16/03/2023
4141
- Fix for crorId field in configuration file.
4242
- o2-roc-list-cards is able to identify previous versions of the firmware. Their version number is displayed and they are flagged as "old", when not on the compatibility list any more.
43+
44+
## v0.42.3 - 28/04/2023
45+
- Fix for roc-status --monitoring: glitchCounter unsigned.

src/CommandLineUtilities/ProgramStatus.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,8 @@ class ProgramStatus : public Program
427427
.addValue(opticalPower, "opticalPower")
428428
.addValue(systemId, "systemId")
429429
.addValue(feeId, "feeId")
430-
.addValue((int)glitchCounter, "glitchCounter")
431-
.addValue((int)link.fecCounter, "fecCounter")
430+
.addValue((uint64_t)glitchCounter, "glitchCounter")
431+
.addValue((uint64_t)link.fecCounter, "fecCounter")
432432
.addTag(tags::Key::SerialId, card.serialId.getSerial())
433433
.addTag(tags::Key::Endpoint, card.serialId.getEndpoint())
434434
.addTag(tags::Key::CRU, card.sequenceId)

src/ReadoutCardVersion.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include "ReadoutCard/Version.h"
1313

14-
#define O2_READOUTCARD_VERSION "0.42.2"
14+
#define O2_READOUTCARD_VERSION "0.42.3"
1515

1616
namespace o2
1717
{

0 commit comments

Comments
 (0)