Skip to content

Commit f3281a2

Browse files
authored
Merge pull request #64 from openDAQ/jira/SWAUTO-4152
<SWAUTO-4152> Update ASAM-CMP lib and fix CI
2 parents ea9001c + be288be commit f3281a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

asam_cmp_capture_module/src/encoder_bank.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ void EncoderBank::init(uint16_t deviceId)
66
{
77
for (size_t i = 0; i < encodersCount; ++i){
88
encoders[i].setDeviceId(deviceId);
9-
encoders[i].setStreamId(i);
9+
encoders[i].setStreamId(static_cast<uint8_t>(i));
1010
}
1111
}
1212

external/AsamCmpLib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ set(ASAM_CMP_LIB_ENABLE_TESTS OFF)
66
FetchContent_Declare(
77
AsamCmpLib
88
GIT_REPOSITORY https://github.com/openDAQ/ASAM-CMP-Library.git
9-
GIT_TAG 261cd2c03b4207f33dd2c2be545bc2d27e0f40cb
9+
GIT_TAG v1.0.2-rc
1010
)
1111
FetchContent_MakeAvailable(AsamCmpLib)

0 commit comments

Comments
 (0)