Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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