Skip to content

Commit

Permalink
Merge pull request #423 from sy-c/master
Browse files Browse the repository at this point in the history
v0.45.3
  • Loading branch information
sy-c authored Jul 16, 2024
2 parents 8bcffe9 + 474a38c commit 180cde0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@ metric format for the CRORC and the CRU is different, as different parameters ar
| `"pktErrorCheck2"` | - | int |
| `"pktErrorOversize"` | - | int |
| `"orbitSor"` | - | int |
| `"rdhCorruptedDropped"` | - | int |
| Tag key | Value |
| --------------------- | --------------------- |
Expand Down
4 changes: 4 additions & 0 deletions doc/releaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,7 @@ This file describes the main feature changes for released versions of ReadoutCar
## v0.45.2 - 29/05/2024
- Updated list of firmwares.
- Added CRU option dropBadRdhEnabled.

## v0.45.3 - 16/07/2024
- Added some counters for roc-status:
- link (with --monitoring option only): rdhCorruptedDropped (for convenience - this value is extracted from the existing pktErrorCheck1 field, bits [23:16]).
1 change: 1 addition & 0 deletions src/CommandLineUtilities/ProgramStatus.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,7 @@ class ProgramStatus : public Program
.addValue((uint64_t)link.pktErrorCheck2, "pktErrorCheck2")
.addValue((uint64_t)link.pktErrorOversize, "pktErrorOversize")
.addValue((uint64_t)link.orbitSor, "orbitSor")
.addValue((uint8_t)((link.pktErrorCheck1 & 0x00ff0000 ) >> 16), "rdhCorruptedDropped")
.addTag(tags::Key::SerialId, card.serialId.getSerial())
.addTag(tags::Key::Endpoint, card.serialId.getEndpoint())
.addTag(tags::Key::CRU, card.sequenceId)
Expand Down
2 changes: 1 addition & 1 deletion src/ReadoutCardVersion.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "ReadoutCard/Version.h"

#define O2_READOUTCARD_VERSION "0.45.2"
#define O2_READOUTCARD_VERSION "0.45.3"

namespace o2
{
Expand Down

0 comments on commit 180cde0

Please sign in to comment.