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
2 changes: 1 addition & 1 deletion asam_cmp_capture_module/src/encoder_bank.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ void EncoderBank::init(uint16_t deviceId)
{
for (size_t i = 0; i < encodersCount; ++i){
encoders[i].setDeviceId(deviceId);
encoders[i].setStreamId(i);
encoders[i].setStreamId(static_cast<uint8_t>(i));
}
}

Expand Down
2 changes: 1 addition & 1 deletion external/AsamCmpLib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)