From 570de08210caa2b827d21c037669c2030bc2341c Mon Sep 17 00:00:00 2001 From: Aliaksandr Adziareika <8034372+alexadereyko@users.noreply.github.com> Date: Fri, 29 May 2026 14:19:26 +0200 Subject: [PATCH 1/5] Bump version to 1.2.0 (#74) --- module_version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module_version b/module_version index afaf360..867e524 100644 --- a/module_version +++ b/module_version @@ -1 +1 @@ -1.0.0 \ No newline at end of file +1.2.0 \ No newline at end of file From 62d270b1295d6e0bfe71c2b7587991062dd93c51 Mon Sep 17 00:00:00 2001 From: Aliaksandr Adziareika <8034372+alexadereyko@users.noreply.github.com> Date: Mon, 13 Jul 2026 15:46:20 +0200 Subject: [PATCH 2/5] Update README prerequisites section (Npcap) (#76) * Update README prerequisites section (Npcap) Add a Prerequisites section so Npcap reads as a dependency of the module (runtime and build), not just a build tool. * Add reinstall Npcap recommendations to README --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 643c402..c2f94a7 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,14 @@ It uses [PcapPlusPlus Library](https://pcapplusplus.github.io/) to transport CMP - Support CAN / CAN-FD and Analog signals. - Gather information about Capture Modules appearing on the network. +## Prerequisites +On Windows, [Npcap](https://npcap.com/#download) must be installed with the **"Install Npcap in WinPcap API-compatible Mode"** option enabled. This option makes the packet-capture libraries (`wpcap.dll`, `packet.dll`) available system-wide, so the modules can locate them. If Npcap is already installed without this option, reinstall it with the option enabled. + ## Required tools before building - [CMake 3.24](https://cmake.org/) or higher - [Git](https://git-scm.com/) - libpcap - - [Npcap](https://npcap.com/#download) for Windows - must be installed in WinPcap API-compatible Mode + - [Npcap](https://npcap.com/#download) for Windows (see [Prerequisites](#prerequisites)) - [libpcap developers pack](https://www.tcpdump.org/#latest-release) for Linux can be installed through a package manager `sudo apt-get install libpcap-dev` - Compiler: From 2ff038a6e60b22936c2f4684f7e9e5de2ca06359 Mon Sep 17 00:00:00 2001 From: Aliaksandr Adziareika Date: Mon, 13 Jul 2026 12:53:30 +0200 Subject: [PATCH 3/5] Propagate root project version to modules --- modules/asam_cmp_capture_module/src/CMakeLists.txt | 2 +- modules/asam_cmp_data_sink/src/CMakeLists.txt | 2 +- shared/libraries/asam_cmp_common_lib/src/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/asam_cmp_capture_module/src/CMakeLists.txt b/modules/asam_cmp_capture_module/src/CMakeLists.txt index cf108a7..26747cd 100644 --- a/modules/asam_cmp_capture_module/src/CMakeLists.txt +++ b/modules/asam_cmp_capture_module/src/CMakeLists.txt @@ -1,5 +1,5 @@ project(asam_cmp_capture_module - VERSION 1.0.0 + VERSION ${${REPO_OPTION_PREFIX}_VERSION} LANGUAGES CXX) set(LIB_NAME asam_cmp_capture_module) diff --git a/modules/asam_cmp_data_sink/src/CMakeLists.txt b/modules/asam_cmp_data_sink/src/CMakeLists.txt index 166fc6f..5e14970 100644 --- a/modules/asam_cmp_data_sink/src/CMakeLists.txt +++ b/modules/asam_cmp_data_sink/src/CMakeLists.txt @@ -1,4 +1,4 @@ -project(asam_cmp_data_sink LANGUAGES CXX VERSION 1.0.0) +project(asam_cmp_data_sink LANGUAGES CXX VERSION ${${REPO_OPTION_PREFIX}_VERSION}) set(SRC_Cpp module_dll.cpp data_sink_module.cpp diff --git a/shared/libraries/asam_cmp_common_lib/src/CMakeLists.txt b/shared/libraries/asam_cmp_common_lib/src/CMakeLists.txt index 08acbad..48d1ab0 100644 --- a/shared/libraries/asam_cmp_common_lib/src/CMakeLists.txt +++ b/shared/libraries/asam_cmp_common_lib/src/CMakeLists.txt @@ -1,4 +1,4 @@ -project(asam_cmp_common_lib LANGUAGES CXX VERSION 1.0.0) +project(asam_cmp_common_lib LANGUAGES CXX VERSION ${${REPO_OPTION_PREFIX}_VERSION}) set(SRC_Cpp interface_common_fb.cpp ethernet_pcpp_impl.cpp From 56ef4aa47b9570aefd233ab332f22845bd04622c Mon Sep 17 00:00:00 2001 From: Aliaksandr Adziareika Date: Mon, 13 Jul 2026 15:50:46 +0200 Subject: [PATCH 4/5] Update openDAQ ref to v3.40.1 tag --- opendaq_ref | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendaq_ref b/opendaq_ref index 88d050b..6963484 100644 --- a/opendaq_ref +++ b/opendaq_ref @@ -1 +1 @@ -main \ No newline at end of file +v3.40.1 \ No newline at end of file From ad58605e9a546e3e01aa441bfb94707b4863146c Mon Sep 17 00:00:00 2001 From: Aliaksandr Adziareika Date: Mon, 13 Jul 2026 15:51:23 +0200 Subject: [PATCH 5/5] Bump version to 1.2.1 --- module_version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module_version b/module_version index 867e524..cb174d5 100644 --- a/module_version +++ b/module_version @@ -1 +1 @@ -1.2.0 \ No newline at end of file +1.2.1 \ No newline at end of file