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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion modules/asam_cmp_capture_module/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion modules/asam_cmp_data_sink/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion opendaq_ref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
main
v3.40.1
2 changes: 1 addition & 1 deletion shared/libraries/asam_cmp_common_lib/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading