Skip to content

Commit d1b3cca

Browse files
authored
Merge pull request #402 from sy-c/master
v0.40.2
2 parents 8d33b0f + b6cd8ae commit d1b3cca

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

doc/releaseNotes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ This file describes the main feature changes for released versions of ReadoutCar
2121
## v0.40.1 - 11/01/2023
2222
- Added support for CRORC firmware version v2.10.0 (0x221ff280)
2323
- Minor compilation warnings fixed
24+
25+
## v0.40.2 - 16/02/2023
26+
- Fixed bug with o2-roc-ctp-emulator failing to parse hexadecimal values of the init-orbit option.

src/CommandLineUtilities/ProgramCtpEmulator.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class ProgramCtpEmulator : public Program
113113
mOptions.triggerFrequency,
114114
mOptions.generateEox,
115115
mOptions.generateSingleTrigger,
116-
(uint32_t)strtoul(mOptions.orbitInit.c_str(), NULL, 32) });
116+
(uint32_t)strtoul(mOptions.orbitInit.c_str(), NULL, 16) });
117117
}
118118

119119
private:

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

1616
namespace o2
1717
{

0 commit comments

Comments
 (0)