Skip to content

Commit 2aa179a

Browse files
authored
Merge pull request #415 from sy-c/master
v0.44.1
2 parents d18cee4 + 05eb407 commit 2aa179a

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

doc/releaseNotes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,8 @@ This file describes the main feature changes for released versions of ReadoutCar
5353
- Added some counters for roc-status:
5454
- link (with --monitoring option only): orbitSOR for CRORC
5555
- Updated list of firmwares for CRORC
56+
57+
## v0.44.1 - 16/06/2023
58+
- Updated list of CRORC firmwares: hash truncated to 7 chars, because CRORC does not report all 8.
59+
- roc-status:
60+
- added pciAddress for user logic link 15

src/CommandLineUtilities/ProgramStatus.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,7 @@ class ProgramStatus : public Program
475475
if (reportInfo.userLogicEnabled) {
476476
if (mOptions.monitoring) {
477477
monitoring->send(Metric{ "link" }
478+
.addValue(card.pciAddress.toString(), "pciAddress")
478479
.addValue((uint64_t)reportInfo.userLogicOrbitSor, "orbitSor")
479480
.addTag(tags::Key::SerialId, card.serialId.getSerial())
480481
.addTag(tags::Key::Endpoint, card.serialId.getEndpoint())

src/FirmwareChecker.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ FirmwareChecker::FirmwareChecker() : mCompatibleFirmwareList({
3535
{ "9052c0dd", "v3.18.1" },
3636
{ "47df4106", "v3.19.0" },
3737
{ "adc37d07", "v3.19.0" },
38-
/* CRORC */
38+
/* CRORC - keep 7 chars only for the hash */
3939
{ "267f8e5", "v2.9.1" },
4040
{ "cecc295", "v2.9.0" },
41-
{ "221ff280", "v2.10.0" },
42-
{ "cfa0bc9c", "2.10.1" },
43-
{ "2d4c9028", "2.11.0" },
44-
{ "c7ff5689", "2.12.0" },
45-
{ "ac9dd573", "2.12.1" },
41+
{ "221ff28", "v2.10.0" },
42+
{ "cfa0bc9", "2.10.1" },
43+
{ "2d4c902", "2.11.0" },
44+
{ "c7ff568", "2.12.0" },
45+
{ "ac9dd57", "2.12.1" },
4646
})
4747

4848
// second list for older firmware

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.44.0"
14+
#define O2_READOUTCARD_VERSION "0.44.1"
1515

1616
namespace o2
1717
{

0 commit comments

Comments
 (0)