We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea9001c + be288be commit f3281a2Copy full SHA for f3281a2
asam_cmp_capture_module/src/encoder_bank.cpp
@@ -6,7 +6,7 @@ void EncoderBank::init(uint16_t deviceId)
6
{
7
for (size_t i = 0; i < encodersCount; ++i){
8
encoders[i].setDeviceId(deviceId);
9
- encoders[i].setStreamId(i);
+ encoders[i].setStreamId(static_cast<uint8_t>(i));
10
}
11
12
external/AsamCmpLib/CMakeLists.txt
@@ -6,6 +6,6 @@ set(ASAM_CMP_LIB_ENABLE_TESTS OFF)
FetchContent_Declare(
AsamCmpLib
GIT_REPOSITORY https://github.com/openDAQ/ASAM-CMP-Library.git
- GIT_TAG 261cd2c03b4207f33dd2c2be545bc2d27e0f40cb
+ GIT_TAG v1.0.2-rc
)
FetchContent_MakeAvailable(AsamCmpLib)
0 commit comments