Impact Acquire SDK C++
Installation From Private Setup Routines

Table of Contents

This chapter will explain what has to be done to build installation packages for the target platform that include all files needed to operate the device without the need to ship the full Balluff Impact Acquire setup.

Note
This approach is NOT recommended as this might cause version conflicts on the target platform e.g. when the official Impact Acquire setup from Balluff is installed on a target platform together with a version embedded in the private setup routine. Also each time a new driver release becomes available this might force you to update your installation routine as well.

The latest official drivers can always be found here: https://www.balluff.com/en-de/downloads/software

Note
When shipping parts of this SDK please make sure to ship or refer to any third party license that might be involved. Details can be found here: Which Shipped File Is Affected By Which License.

Windows

Most of the driver packages are distributed as MSI (Microsoft Windows Installer™) packages. Some however will be distributed as EXE files. These packages contain so called bootstrappers - a special package format to distribute multiple files as a single installation. The internal underlying technology is also MSI.

Note
Since version 2.18.0 of this SDK all Balluff Impact Acquire Windows installation packages contain kernel mode drivers signed for different target platforms. During installation the merge modules will decide which driver is the one most suitable for the target system. Currently each merge module containing kernel modules will contain 3 different flavors of this module:
To migrate installers please have a look at chapter Migrating Installers

MSI Based Private Setup Routines

If your installation also uses the MSI technology this is the easiest way to distribute all the related driver files! All merge modules (*.msm-files) that belong to a certain version of Impact Acquire can be downloaded from the Balluff website (https://www.balluff.com) as a compressed archive.

After extraction these merge modules then can be included into your setup project as needed and you are done.

32-bit merge modules contain 32-bit code only while 64-bit merge modules contain everything that will allow running both 32-bit and 64-bit applications. The names of the merge modules belonging to Impact Acquire will use the following extensions:

  • *.msm (Will only contain 32-bit kernel code and/or 32-bit user-mode code. This file extension is also used for files that are not bound to a certain bitness like e.g. .NET related files)
  • *.x64.msm (Will contain 64-bit kernel code and/or 32- AND 64-bit user mode code)

So to run 32-bit applications on a 32-bit version of Windows ONLY the 32-bit *.msm files shall be used and to run either 32- or 64-bit applications (or both 32- AND 64-bit applications) ONLY the 64-bit *.x64.msm files shall be used. The only exceptions from this rule are third party merge modules (e.g. the OpenMP-runtime) where this is stated differently in the list of merge modules below. As an example what is inside a merge module let us consider the mvIMPACT_AcquireBaseLibs file:

  • mvIMPACT_AcquireBaseLibs.msm contains the 32-bit version of mvDeviceManager.dll and mvPropHandling.dll
  • mvIMPACT_AcquireBaseLibs.x64.msm contains the 32-bit AND the 64-bit version of mvDeviceManager.dll and mvPropHandling.dll. Both versions of the 2 libraries will be installed into the appropriate target directories

Unattended Setups

Sometimes user interaction during an installation is not desired. The MSI engine therefore supports a set of command line options that can be used to run setups in special ways.

Attention
In order to run unattended setups successfully this installer must be started with elevated privileges! Without them the installation will fail!

Probably the most common way to run an unattended setup will be an installation without any GUI display or user interaction. This can be achieved like this:

// for *.msi files
msiexec /i myInstaller.msi /quiet
// for *.exe files
myInstaller.exe /install /quiet /norestart

or (with an automatic reboot of the system at the end of the installation):

// for *.msi files
msiexec /i myInstaller.msi /quiet /forcerestart
// for *.exe files
myInstaller.exe /install /quiet

For a complete list of option type

// for *.msi files
msiexec.exe
// for *.exe files
myInstaller.exe /?

in a command shell an hit the ENTER key.

Note
Since Impact Acquire 2.22.0 all Balluff Impact Acquire installation packages will require the user to accept the EULA (End User License Agreement) before a package can be installed. For installations using the command line the ACCEPT_EULA property needs to be set if the user wants to suppress the GUI EULA confirmation:
// for *.msi packages
msiexec /i myInstaller.msi ACCEPT_EULA=yes
// for *.exe packages
myInstaller.exe /install ACCEPT_EULA=yes
Note
By using unattended setups (/quiet parameter in the command line) the user explicitly accepts the EULA!

Prerequisites

This SDK currently is built using Microsoft Visual Studio® 2019. When building a custom installation therefore the required Microsoft Visual Studio® runtime libraries must be installed on the target machine. The recommended way of doing that is by installing the corresponding redistributables:

  • vcredist.x86.exe (for 32-bit target systems AND 64-bit target systems that shall execute 32-bit applications)
  • vcredist.x64.exe (for 64-bit target systems. This package does NOT include the 32-bit versions of the redistributables!)

Common Merge Modules For All Device Drivers

This following section contains merge modules will be needed by any custom installer that shall support Impact Acquire compliant devices:

Note
More merge modules than mentioned in this entire documentation are available! However these are typically not needed on a target system thus will not be discussed here. An example would be the merge module containing the API manuals. So if you are missing something here you would like to integrate in your installation have a look at the extracted merge modules. You might find it there. If not get in touch with us as we might be able to help!
Impact Acquire driver framework
Name of the 32-bit merge module mvIMPACT_AcquireBaseLibs.msm
Name of the 64-bit merge module mvIMPACT_AcquireBaseLibs.x64.msm
Requirement Must be installed. In order to work with GenICam compliant devices some environment variables must be set (see Environment Variables below).
Impact Acquire .NET Framework runtime
Name of the merge module mvIMPACT_Acquire.NET.msm
Requirement Only needed if the target application has been written using the .NET Framework API of Impact Acquire. Refer to Building, Linking And Running Applications Using Impact Acquire about the differences between the .NET Framework and the .NET Standard API.
Impact Acquire .NET Standard runtime
Name of the merge module mvIMPACT_Acquire.NET.Standard.msm
Requirement Only needed if the target application has been written using the .NET Standard API of Impact Acquire. Refer to Building, Linking And Running Applications Using Impact Acquire about the differences between the .NET Framework and the .NET Standard API.
Impact Acquire Java runtime
Name of the 32-bit merge module mvIMPACT_AcquireJava.msm
Name of the 64-bit merge module mvIMPACT_AcquireJava.x64.msm
Requirement Only needed if the target application has been written using the Java API of Impact Acquire.
Impact Acquire Python runtime
Name of the merge module mvIMPACT_AcquirePython.msm
Requirement Only needed if the target application has been written using the Python API of Impact Acquire.
Impact Acquire tools prerequisites
Name of the 32-bit merge module mvIMPACT_AcquireExecutablesPrerequisites.msm
Name of the 64-bit merge module mvIMPACT_AcquireExecutablesPrerequisites.x64.msm
Requirement Only needed if mvIMPACT_AcquireTools is installed. Contains additional libraries that are needed by some of the tools. In particular this merge module contains the mvDisplay.dll which might be needed by a customers applications as well.
Impact Acquire tools
Name of the 32-bit merge module mvIMPACT_AcquireTools.msm
Name of the 64-bit merge module mvIMPACT_AcquireTools.x64.msm
Requirement Only needed if tools like ImpactControlCenter or DeviceConfigure shall be available

This merge module has configuration options: Define a property CREATE_DESKTOP_SHORTCUTS in your installation and pass the value of this property to the merge module if you want desktop icons to be created for the tools. Define a property FILTER_INSTALL_PARAMS and feed it with a string containing arbitrary command line parameters to be sent to GigEConfigure when starting the system the next time. See Installation Options further down in this chapter for additional details.

DirectShow support for Impact Acquire compliant devices
Name of the 32-bit merge module mvDirectShow_acquireDriver.msm
Name of the 64-bit merge module mvDirectShow_acquireDriver.x64.msm
Requirement Only needed if the application requires a DirectShow interface
VisionPro support for Impact Acquire compliant devices
Name of the 32-bit merge module mvIMPACT_Acquire_Cognex_Adapter.msm
Name of the 64-bit merge module mvIMPACT_Acquire_Cognex_Adapter.x64.msm
Requirement Only needed if the device shall be operated using VisionPro
NeuroCheck 6 support for Impact Acquire compliant devices
Name of the 32-bit merge module mvIMPACT_Acquire_NeuroCheck6_Adapter.msm
Name of the 64-bit merge module mvIMPACT_Acquire_NeuroCheck6_Adapter.x64.msm
Requirement Only needed if the device shall be operated using NeuroCheck 6. Files will only be installed if an existing NeuroCheck 6 installation can be detected in at least one of the ProgramFiles folders
NeuroCheck 6.1 support for Impact Acquire compliant devices
Name of the 32-bit merge module mvIMPACT_Acquire_NeuroCheck6_1_Adapter.msm
Name of the 64-bit merge module mvIMPACT_Acquire_NeuroCheck6_1_Adapter.x64.msm
Requirement Only needed if the device shall be operated using NeuroCheck 6.1. Files will only be installed if an existing NeuroCheck 6.1 installation can be detected in at least one of the ProgramFiles folders

BVS CA-GT, BVS CA-GX (mvBlueCOUGAR-X), BVS CA-SF (mvBlueFOX3), BVS CA-BN (mvBlueNAOS), mvBlueCOUGAR-S

User mode driver
Name of the 32-bit merge module mvGenTL-AcquireDriver.msm
Name of the 64-bit merge module mvGenTL-AcquireDriver.x64.msm
Requirement Must be installed. To use the user mode driver as a GenTL Producer you must create or append the corresponding environment variables (see Environment Variables below).
GenICam runtime
Name of the 32-bit merge module GenICamRuntime.msm
Name of the 64-bit merge module GenICamRuntime.x64.msm
Requirement Must be installed. The GenICam runtime needed to operate any device the complies with the GenICam standard that shall be used through the mvGenTL-Acquire driver package.

Installation Options

When the original installer of the mvGenTL_Acquire driver package is used, the user will be prompted to restart the system at the end of the installation. During reboot then the GigE Vision™ Filter Driver is installed by GigEConfigure.exe. When all the appropriate merge modules have been integrated into the setup, this will also happen in custom installations. Sometimes user interaction during the installation is or is not desired and/or GUI based tools shall not be displayed. This can be achieved by changing a public property of the installer's internal data base.

An installation of the driver without any user interaction can be achieved like this from the command line:

mvGenTL_Acquire-x86_64-3.0.0.exe /quiet /forcerestart

This will install the driver, reboot the system and install the filter driver and will display the GigEConfigure tool to the user and will display some status information during the installation. Please note that you have to call the install engine from an administrator shell in order to get this working properly. Valid values for the FILTER_INSTALL_PARAMS property are all valid command line options for the GigEConfigure tool.

Apart from that there are some other public properties, which can be tailored to suit the needs of the application:

  • GEV_SUPPORT (Valid values: yes, no)
  • GEV_NDIS_DRIVER_INSTALL (Valid values: yes, no)
  • PCIE_SUPPORT (Valid values: yes, no)
  • U3V_SUPPORT (Valid values: yes, no)

These properties control whether the corresponding kernel drivers will be installed on the target system or not. The default for each property is displayed in bold.

So e.g. to install the GEV driver only you can call the MSI engine like this:

mvGenTL_Acquire-x86_64-3.0.0.exe /quiet /forcerestart U3V_SUPPORT=no GEV_SUPPORT=yes PCIE_SUPPORT=no

To copy all the GEV driver and tools related files to the target system only without actually installing the filter driver you can call the MSI engine like this:

mvGenTL_Acquire-x86_64-3.0.0.exe /quiet /forcerestart GEV_NDIS_DRIVER_INSTALL=no
Note
Please note that setting GEV_SUPPORT to no will superimpose the GEV_NDIS_DRIVER_INSTALL property so combining GEV_SUPPORT=no and GEV_NDIS_DRIVER_INSTALL=yes does not make any sense!

When only the U3V driver shall be support in silent mode call msiexec like this:

mvGenTL_Acquire-x86_64-3.0.0.exe /quiet /forcerestart U3V_SUPPORT=yes GEV_SUPPORT=no PCIE_SUPPORT=no

Configuring the filter driver installation tool then is not necessary, as it is only needed for GEV support.

GigE Vision™ Device Specific

Kernel mode driver
Name of the 32-bit merge module mvGigECaptureDriver.msm
Name of the 64-bit merge module mvGigECaptureDriver.x64.msm
Requirement Should be installed for optimal performance. Needs additional work (Filter driver must be installed either by using the GigEConfigure tool or another appropriate method). See Non-MSI based section about installing the GEV driver for details.
GigE Vision specific tools
Name of the 32-bit merge module mvGigETools.msm
Name of the 64-bit merge module mvGigETools.x64.msm
Requirement Should be installed for optimal performance. Contains tools that can be used to install/remove/enable/disable the filter driver and to set up GigE Vision compliant devices. In order to automatically install the driver some environment variables must be set (see Environment Variables below).

This merge module has a configuration option: Define a property CREATE_DESKTOP_SHORTCUTS in your installation an pass the value of this property to the merge module if you want desktop icons to be created for the tools.

Technical manuals for GigE Vision devices
Name of the 32-bit merge module mvBlueCOUGARDocumentation.msm
Name of the 64-bit merge module mvBlueCOUGARDocumentation.x64.msm
Requirement Only needed if technical manuals for mvBlueCOUGAR devices shall be available

USB3 Vision Device Specific

Kernel mode driver
Name of the 32-bit merge module mvUSB3VisionKernelDriver.msm
Name of the 64-bit merge module mvUSB3VisionKernelDriver.x64.msm
Requirement Must be installed for USB3 Vision support.
Technical manuals for USB3 Vision devices
Name of the 32-bit merge module mvBlueFOX3Documentation.msm
Name of the 64-bit merge module mvBlueFOX3Documentation.x64.msm
Requirement Only needed if technical manuals for mvBlueFOX3 devices shall be available

BVS CA-BN (mvBlueNAOS) Specific

Kernel mode driver and GenTL Producer
Name of the 32-bit merge module So far a 32-bit version of this device driver doesn't exist!
Name of the 64-bit merge module mvBlueNAOSDriver.x64.msm
Requirement Must be installed to work with BVS CA-BN (mvBlueNAOS) devices.
Technical manuals for BVS CA-BN (mvBlueNAOS) devices
Name of the 32-bit merge module mvBlueNAOSDocumentation.msm
Name of the 64-bit merge module mvBlueNAOSDocumentation.x64.msm
Requirement Only needed if technical manuals for BVS CA-BN (mvBlueNAOS) devices shall be available. Please note that right now a 32-bit driver for mvBlueNAOS (Labs) devices doesn't exist!

mvBlueFOX

Kernel mode driver
Name of the 32-bit merge module mvBlueFOXKernelDriver.msm
Name of the 64-bit merge module mvBlueFOXKernelDriver.x64.msm
Requirement Must be installed.
User mode driver
Name of the 32-bit merge module mvBlueFOXDriver.msm
Name of the 64-bit merge module mvBlueFOXDriver.x64.msm
Requirement Must be installed
Technical manuals for mvBlueFOX devices
Name of the 32-bit merge module mvBlueFOXDocumentation.msm
Name of the 64-bit merge module mvBlueFOXDocumentation.x64.msm
Requirement Only needed if technical manuals for mvBlueFOX devices shall be available

mvVirtualDevice

User mode driver
Name of the 32-bit merge module mvVirtualDeviceDriver.msm
Name of the 64-bit merge module mvVirtualDeviceDriver.x64.msm
Requirement Must be installed
Technical manuals for mvVirtualDevice devices
Name of the 32-bit merge module mvVirtualDeviceDocumentation.msm
Name of the 64-bit merge module mvVirtualDeviceDocumentation.x64.msm
Requirement Only needed if technical manuals for mvVirtualDevice devices shall be available
Note
This is the recommended way of redistributing the product driver files when the original driver package can't or shall not be used.

Running Customized Impact Acquire MSI Installers From Other Installation Frameworks

If other installation frameworks such as Inno Setup or NSIS (Nullsoft Scriptable Install System) are used then sometimes using merge modules (*.msm files) is not an option as it is not supported by the installation framework. In such cases there are 3 ways to go:

  • Directly ship all the Impact Acquire MSI packages that contain drivers that shall be installed on the target system
  • Embed all the original Impact Acquire MSI packages that contain drivers that shall be installed on the target system into the installer of the client application and run the installers during the installation of the application
  • Embed all the files belonging to the Impact Acquire framework that are needed to access the hardware that shall run on the target system into the installer of the client application. This approach is covered in the next section

How to launch an installation from another installation with no user interaction has been already discussed in chapter Unattended Setups. However when the Impact Acquire installers are embedded into another installation simply running these installers might no always result in only the desired files being installed but also the header files, documentation and other features unwanted on a defined target system.

So only installing the files needed by an application does require to modify one or more of the following properties when launching the Impact Acquire installation:

  • ADDLOCAL (The value of the ADDLOCAL property is a list of features that are delimited by commas, and are to be installed locally)
  • REMOVE (The value of the REMOVE property is a list of features delimited by commas that are to be removed. These refers to features which are already installed on the target system, thus this property can be used to remove one or more features of a certain package)
  • INSTALLLEVEL (The INSTALLLEVEL property is the initial level at which features are selected "ON" for installation by default)

For details refer to the documentation about these properties in the MSDN (http://msdn.microsoft.com).

So one way to go would be to switch off ALL features by setting the INSTALLLEVEL property to 0 and then add all those features needed by the application by providing a list of these features to the ADDLOCAL property:

// for *.msi files
msiexec /i myInstaller.msi INSTALLLEVEL=0 ADDLOCAL="mvBlueFOXDriverModule,Documentation,DotNETSupport,SDKHeader" /quiet /forcerestart

When e.g. running the mvBlueFOX installer with the following command line

msiexec /i mvBlueFOX-x86_64-3.0.0.msi INSTALLLEVEL=0 ADDLOCAL="mvBlueFOXDriverModule,Documentation,DotNETSupport,SDKHeader"

results in the following features being pre-selected:

To obtain the names of the features to be installed any tool that can analyze an MSI-files database can be used. The following screenshot was taken by Orca, which is a tool for authoring MSI files that can be downloaded from Microsoft™ free of charge.

On the other hand to remove one or more features belonging to a known installer on the target system can be accomplished using the REMOVE property. So to e.g. remove the .NET support and the technical manual for mvBlueFOX devices the following command line can be used:

msiexec /i mvBlueFOX-x86_64-3.0.0.msi REMOVE="Documentation,DotNETSupport" /quiet

Non-MSI Based Setup Routines

Note
If not specified otherwise, all files can be found in the folder which contains the driver files.
Attention
Other setup routines should NOT include the driver files if this can be avoided, as this might cause version conflicts when the original installation package is installed as well and might also confuse the MSI engine when removing the original installation package, which might cause an incomplete package removal operation. However if this approach is desired this section provides a brief list of things that must be done of the target machine.
Note
Deprecated product families will NOT be described here!

Common Files Needed For All Device Drivers

To operate a Balluff imaging or image capture device with the Impact Acquire API some common files are needed for every device on the target system:

  • mvPropHandling.dll
  • mvDeviceManager.dll
Note
More information about locations of libraries within the standard installation is summarized at Locating Runtime Libraries.

As the user mode part of this SDK internally make use of Open MP (http://openmp.org/) on Windows a matching version of the Open MP runtime must be installed on the target system as well. Current versions of the libraries are linked against the Microsoft Visual Studio® 2019 version of the Open MP runtime. The corresponding merge modules or redistributables can be obtained from Microsoft. See here as well: Prerequisites

Note
Since release 1.8.0 of the Impact Acquire interface the file libexpat.dll is no longer shipped with the installation package, as it is no longer needed by any of the modules belonging to the Impact Acquire interface. This might force you to modify your installer.

All these files can be either be copied somewhere in the systems path or into the applications directory.

With these files the device can be used and configured from an application. Some features however require some additional installation work:

General Considerations When Shipping Kernel Drivers

In general any version of Windows requires you to install properly signed kernel/device drivers. Unfortunately the signature requirements did change over the years and therefore different Windows version require differently signed drivers. The actual kernel driver is always the same in almost every scenario however the signature attached to the file is NOT and therefore the full file is different. When working with the *.msm-files for the driver installation the merge modules internal logic will detect the version of Windows the installation is running on and will then install the matching version of the device driver. Internally this is achieved by putting EVERY version of the kernel driver into the merge module and then only the correct version gets installed. When not using the merge modules this has to be implemented as well. If just a single version of Windows is targeted the easiest approach is to install the Impact Acquire package on that system and get the related driver files from the full installation. Which files are needed for which device is described further down in this chapter. Right now Impact Acquire usually comes with drivers for the following versions of Windows:

Windows versionUsed Signature
Vista, 7, 8, 8.1, 10(smaller than release 1607) and Server 2008SHA256
Windows 10 greater or equal version 1607 and Windows 11SHA256 EV

See Windows as well!

Displaying Image Data

In case an application makes use of the mvDisplay.dll library this must be deployed on the target system as well. The same restrictions, path information, etc. as in the previous section apply.

Note
More information about locations of libraries within the standard installation is summarized at Locating Runtime Libraries.

Load/Store Settings

In order to allow the application to load and store settings in the registry these keys must be created during the installation:

  • HKEY_LOCAL_MACHINE/Software/Balluff/Settings
  • HKEY_CURRENT_USER/Software/Balluff/Settings

If the keys are missing settings can still be loaded and stored in the platform independent XML format by using the appropriate functions discussed in the chapters describing the software interface.

Log-file Support

If your application shall be able to generate log output the following directory must be created on the target system:

  • "%PUBLIC%/Documents/Balluff/Impact Acquire/Logs"

Apart from that these files must be installed into "%PUBLIC%/Documents/Balluff/Impact Acquire/Logs":

  • mvDebugFlags.mvd
  • logo.png
  • mvIMPACT_acquireLogFile.xsl
  • mvLogFileViewer.html
  • sarissa.js
  • Apache.txt (this must be shipped with mvLogFileViewer.html and sarissa.js for legal reasons as part of the file make use of code under the Apache 2.0 license)

The first file is discussed in detail in the logging chapter of this manual, the latter files are only needed if the standard Balluff Impact Acquire log-file style shall be used(XML with stylesheet transformation). To find out how to embed your own log-file stylesheet please refer to the chapter about the logging mechanism. Here it also explained how to create plain XML log files and XML files that can be viewed using mvLogFileViewer.html.

Camera Description Files Support (Frame Grabbers)

Note
The last minor release containing frame grabber related Impact Acquire packages was version 2.47.0. If frame grabber boards are part of the application the last released package for these boards can be mixed with newer releases of other Impact Acquire up to version 3.0.0. Mixing 2.x installations with 3.x and higher installations will not be supported. See Migrating Applications To Impact Acquire 3.0.0 And Higher as well! Frame grabber board packages have entered maintenance mode!

If your application shall be able to work with camera description files and does NOT modify the property mvIMPACT::acquire::Device::customDataDirectory before initialising the device the following directory must be created on the target system:

  • "%PUBLIC%/Documents/Balluff/Impact Acquire/CameraFiles"

All camera description files that shall be used by the application must be installed into the folder CameraFiles in order to be recognized by the driver.

.NET Support

In case an application makes use of the Impact Acquire .NET interface the corresponding libraries must be deployed on the target system as well. Were and what version of these libraries must be shipped is explained in the Building, Linking And Running Applications Using Impact Acquire chapter of the .NET API manual.

Depending on the used functionalities the following libraries might be necessary:

  • mv.impact.acquire.dll (always needed)
  • mv.impact.acquire.display.dll (needed if the display module shall be used)
  • mv.impact.acquire.display.extensions.dll (needed if special features of the display module shall be used)
  • mv.impact.acquire.examples.helper.dll (needed if features from this module have been used)
Attention
Even if the listed files have the same names as the ones for the .NET Standard interface the files are NOT identical. Please have a look at chapter Locating Runtime Libraries to get some information where they are located in the default installation.

.NET Standard Support

In case an application makes use of the Impact Acquire .NET Standard interface the corresponding libraries must be deployed on the target system as well. Were and what version of these libraries must be shipped is explained in the Building, Linking And Running Applications Using Impact Acquire chapter of the .NET API manual.

Depending on the used functionalities the following libraries are necessary:

  • mv.impact.acquire.dll (always needed)
  • mv.impact.acquire.display.dll (needed if the display module shall be used)
  • mv.impact.acquire.display.extensions.dll (needed if special features of the display module shall be used)
  • mv.impact.acquire.examples.helper.dll (needed if features from this module have been used)
Attention
Even if the listed files have the same names as the ones for the .NET interface the files are NOT identical. Please have a look at chapter Locating Runtime Libraries to get some information where they are located in the default installation.

Java Support

In case an application makes use of the Java to Impact Acquire native interface the mvIMPACT_Acquire.java.dll library must be deployed on the target system as well. The same restrictions, path information, etc. as in the Common Files Needed For All Device Drivers section apply.

Note
More information about locations of libraries within the standard installation is summarized at Locating Runtime Libraries.

Python Support

Distributing the Impact Acquire Python API requires some additional work as the Python interface has to be compiled for the specific target platform first. The same restrictions, path information, etc. as in the Common Files Needed For All Device Drivers section apply.

Please refer to the to Impact Acquire SDK Python -> Building And Running Applications Using Impact Acquire -> Building -> Windows for more details.

The resulting package will be located at %MVIMPACT_ACQUIRE_DIR%\LanguageBindings\Python\Output. Depending on the Python version which should be used the resulting directory might be named according to the Python version it has been built for:

  • lib.win32-2.7 for Python 2.7
  • lib.win32-3.7 for Python 3.7
Note
More information about locations of libraries within the standard installation is summarized at Locating Runtime Libraries.

FreeImage Support

The mvVirtualDevice driver as well as the load/save image API of Impact Acquire make use of the FreeImage project.

FFmpeg Support

The load/save video stream API makes use of the FFmpeg project. In order to use these features have a good look at the legal notice section and the video stream related API documentation. All details can be found there.

Locating Runtime Libraries

Library 32-bit system - 32-bit library 32-bit system - 64-bit library 64-bit system - 32-bit library 64-bit system - 64-bit library
mvDeviceManager.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"
mvPropHandling.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"
mvDisplay.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"
mvGenTLConsumer.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"
mvGenTLProducer.cti "%MVIMPACT_ACQUIRE_DIR%\bin" - "%MVIMPACT_ACQUIRE_DIR%\bin" "%MVIMPACT_ACQUIRE_DIR%\bin\x64"
mvGenTLProducer.PCIe.cti - - - "%MVIMPACT_ACQUIRE_DIR%\bin\x64"
BVS_CA-BN.[some letter].[0-3].dll - - - "%windir%\system32"
mvIMPACT_Acquire.jar "%MVIMPACT_ACQUIRE_DIR%\bin" - "%MVIMPACT_ACQUIRE_DIR%\bin" "%MVIMPACT_ACQUIRE_DIR%\bin\x64"
mv.impact.acquire.dll (.NET) "%MVIMPACT_ACQUIRE_DIR%\bin\.NET"
mv.impact.acquire.display.dll (.NET) "%MVIMPACT_ACQUIRE_DIR%\bin\.NET"
mv.impact.acquire.display.extensions.dll (.NET) "%MVIMPACT_ACQUIRE_DIR%\bin\.NET"
mv.impact.acquire.examples.helper.dll (.NET) "%MVIMPACT_ACQUIRE_DIR%\bin\.NET"
mv.impact.acquire.dll (.NET Standard) "%MVIMPACT_ACQUIRE_DIR%\bin\netstandard2.0"
mv.impact.acquire.display.dll (.NET Standard) "%MVIMPACT_ACQUIRE_DIR%\bin\netstandard2.0"
mv.impact.acquire.display.extensions.dll (.NET Standard) "%MVIMPACT_ACQUIRE_DIR%\bin\netstandard2.0"
mv.impact.acquire.examples.helper.dll (.NET Standard) "%MVIMPACT_ACQUIRE_DIR%\bin\netstandard2.0"
mvIMPACT_Acquire.java.dll "%MVIMPACT_ACQUIRE_DIR%\bin" - "%MVIMPACT_ACQUIRE_DIR%\bin" "%MVIMPACT_ACQUIRE_DIR%\bin\x64"
mvBlueFOX.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"
mvVirtualDevice.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"
mvBlueFOX.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"
mvVirtualDevice.dll "%windir%\system32" - "%windir%\SysWOW64" "%windir%\system32"

BVS CA-GT, mvBlueCOUGAR, mvBlueFOX3, BVS CA-BN (mvBlueNAOS)

For all GenICam based devices the following files will be necessary:

  • mvGenTLConsumer.dll can be copied somewhere in the systems path or into the applications directory

In case of mvUSB3Vision or GigE Vision™ devices:

  • mvGenTLProducer.cti can be copied somewhere in the systems path or into a directory the corresponding GENICAM_GENTL environment variable is pointing to.

In case of BVS CA-BN (mvBlueNAOS) devices:

  • mvGenTLProducer.PCIe.cti can be copied somewhere in the systems path or into a directory the corresponding GENICAM_GENTL environment variable is pointing to.
  • BVS_CA-BN.[some letter].[0-3].dll can be copied somewhere in the systems path or into the directory mvGenTLProducer.PCIe.cti resides in.
Note
More information about locations of libraries within the standard installation is summarized at Locating Runtime Libraries.
Attention
Regarding all the kernel driver related information discussed in the technology specific sections from here onwards it is essential to understand the impact of what is described here as well! Not doing so will result in a corrupted system (e.g. in problems like this)!

GigE Vision Device Specific (Windows 7 And Smaller)

If the GigE Vision™ capture filter kernel mode driver shall be used the following files must be shipped as well:

For 32-bit support:

  • mvGigECapture.inf (matching the target platform)
  • mvGigECapturem.inf (matching the target platform)
  • mvGigECapture_x86.cat
  • mvGigECapturem_x86.cat
  • mvGigECapture.sys (matching the target platform)

For 64-bit support:

  • mvGigECapture.inf (matching the target platform)
  • mvGigECapturem.inf (matching the target platform)
  • mvGigECapture_amd64.cat
  • mvGigECapturem_amd64.cat
  • mvGigECapture.sys (matching the target platform)
Note
Please note that the file mvGigECapture.sys that is installed on the target system will differ from Windows version to Windows version. Currently Windows 2000 will need a different version of this file than newer versions of Windows. To obtain the correct file needed for the target platform the original installer must be installed on the system in question. Thus to build an installer for Windows 2000 the *.sys-file must be obtained from a Windows 2000 system. When working with the merge modules this will be done automatically.

GigE Vision Device Specific (Windows 8 And Newer)

If the GigE Vision™ capture filter kernel mode driver shall be used the following files must be shipped as well:

For 32-bit support:

  • mvGigECapture2.inf
  • mvGigECapture2_x86.cat
  • mvGigECapture2.sys

For 64-bit support:

  • mvGigECapture2.inf
  • mvGigECapture2_amd64.cat
  • mvGigECapture2.sys

GigE Vision Device Specific (Common Installation)

To actually install the filter driver on the system there are 3 ways to go: Either the tool GigEConfigure or the built-in mechanism of Windows to install a filter driver can be used.

Using GigEConfigure there are 2 possibilities:

  1. By using the command line options available for the tool. For details please have a look into the GigEConfigure section in the Impact Acquire SDK GUI Applications-manual, chapter "Command-line Interface".
  2. The user interactive version by simply starting the tool and then clicking Install driver or Remove driver and/or by right-clicking on a network connection entry to enable/disable the filter driver.
Note
More details regarding the usage of GigEConfigure can be found at the corresponding chapter within the Impact Acquire SDK GUI Applications-manual (here).

Using the built-in mechanism of Windows works like this:

First navigate to any of the network connections available to the system and open the properties dialog of that connection.

Network connection properties

Here click on Install...

In the next Windows select Service and click on Add....

Network component type selection

Now click on Have Disk....

Network service selection

Click on Browse... and navigate to the folder containing the GigE Vision™ capture filter kernel mode driver files mentioned above.

Install from disc

Select the file mvGigECapture.inf and click on Open

Locate file

Click on OK

Select network service
Note
Depending on the amount of network connections installed in your system and depending on the version of Windows you are working with a couple of warnings might appear that must be confirmed with something like Continue anyway.

Afterwards the filter driver will installed and active on EVERY network connection of the system. If that is not desired, it can be enable and disabled from the properties dialog of the network connection that shall be modified by checking or unchecking the box in from of the Balluff Impact Acquire filter driver entry.

Software installation

GigE Vision Device Specific (Registry Based Installation)

The third approach is a possibility provided by the functionality of the mvGenTLProducer.cti which allows to install the filter driver using the Impact Acquire API. At first there are some values which have to be written to the Registry of Windows to specify the GigE Vision™ support and the path to the GigE Vision™ filter driver which shall be installed

The entry HKEY_LOCAL_MACHINE/SOFTWARE/Balluff/Settings has to be generated and afterwards the keys from the following table have to be created.

Name Type Value
GEV_SUPPORT DWORD 1
GEV_DRIVER_SOURCE_PATH String MVIMPACT_ACQUIRE_DIR%\KernelDrivers\mvGigECaptureDriver(x64)(SHA256.EV)\mvGigECapture2.inf
Note
The GEV_DRIVER_SOURCE_PATH might differ depending on the source of the kernel driver files. See General Considerations When Shipping Kernel Drivers as well. Afterwards some small application needs to load the required TLIMV_InstallDriverFromRegistry function from mvGenTLProducer.cti. The following code shows how this would work:
#include <windows.h>
int main( void )
{
typedef void ( *TLIMV_InstallDriverFromRegistry )( void );
HINSTANCE hDLL = LoadLibrary( "<path to mvGenTLProducer.cti>" );
TLIMV_InstallDriverFromRegistry installDriverFromRegistry = ( TLIMV_InstallDriverFromRegistry ) GetProcAddress( ( HMODULE ) hDLL, "TLIMV_InstallDriverFromRegistry" );
installDriverFromRegistry();
};
Note
As the function will install the GigE Vision™ filter driver and access the HKEY_LOCAL_MACHINE entries, the application utilizing this functionality needs to be called with administrator permissions. Of course this cannot only be done using a C/C++ application as shown here but also by any other mechanism that can write to the Registry and can call a DLL function that doesn't require parameters. So this can also be done from within a WiX installation package or some C# application for example.

USB3 Vision Device Specific

For USB3 Vision™ device support the following files correctly signed for the target platform must be shipped as well:

For 32-bit support:

  • mvUSB3Vision.inf
  • mvUSB3Vision.cat
  • x86/libusbK_x86.dll
  • x86/libusb0_x86.dll
  • x86/libusbK.sys
  • x86/WdfCoInstaller01009.dll

For 64-bit support:

  • mvUSB3Vision.inf
  • mvUSB3Vision.cat
  • x86/libusbK_x86.dll
  • x86/libusb0_x86.dll
  • amd64/libusbK.sys
  • amd64/libusbK.dll
  • amd64/libusb0.dll
  • amd64/WdfCoInstaller01009.dll
Attention
The relative folder structure is vital! Installation of the kernel module will fail if this does not match!

Experienced users are encouraged to use the Microsoft Driver install Framework for applications to deploy this driver on the target system (http://msdn.microsoft.com/en-us/library/ms790295.aspx). This is the recommended way for installing device drivers.

BVS CA-BN (mvBlueNAOS) Device Specific

For mvBlueNAOS device support the following files correctly signed for the target platform must be shipped as well:

For 32-bit support:

Attention
There is no support for 32-bit operating systems.

For 64-bit support:

  • mvBlueNAOS.inf
  • mvBlueNAOS.cat
  • mvBlueNAOS.sys

Experienced users are encouraged to use the Microsoft Driver install Framework for applications to deploy this driver on the target system (http://msdn.microsoft.com/en-us/library/ms790295.aspx). This is the recommended way for installing device drivers.

GenICam Runtime

Apart from that, the GenICam runtime this driver has been linked with must be installed on the target system. The runtime modules are contained in the merge modules belonging to this driver package.

The driver will try to locate the GenICam runtime in %MVIMPACT_ACQUIRE_DIR%/Toolkits/GenICam_v<major>_<minor> thus if you plan to distribute the runtime in a different way you need to setup you environment accordingly as described by the GenICam standard.

mvBlueFOX

  • mvBlueFOX.dll can be copied somewhere in the systems path or into the applications directory
Note
More information about locations of libraries within the standard installation is summarized at Locating Runtime Libraries.

The files belonging to the kernel driver correctly signed for the target platform:

  • amvBlueFOX2.inf must be copied into the Windows inf folder
  • mvBlueFOX2.sys must be copied into the Windows drivers folder
  • mvBlueFOX2.cat (signed catalog file for the mvBlueFOX2.sys module)
Note
The leading 'a' in the file name amvBlueFOX2.inf is NOT a mistake. The reason for this strange file name is that Windows 2000 by default uses the first *.inf-file in an alphabetical search that matches the detected device. As previous versions of this driver package contained 2 versions of the kernel driver, the 'older' versions *.INF-files name was mvBlueFOX.inf and in order to install the newer version of the kernel driver as a default driver the new *.inf-file must be found before the old one as Windows does not list all available drivers but only the first one detected.

The kernel driver files should be installed BEFORE connecting the device to the target system the first time as then Windows automatically detects the driver.

*.cat files can't just be copied into some system specific directory. Please refer to the corresponding documentation by Microsoft.

In addition to this a Windows driver framework co-installer is needed. This file must be copied into the Windows system (system32) folder. Both the 32-bit and the 64-bit version of the driver need 'WdfCoinstaller01009.dll' for the driver installation. If the co-installer is not present on the target system they must be copied as well.

Experienced users are encouraged to use the Microsoft Driver install Framework for applications to deploy this driver on the target system (http://msdn.microsoft.com/en-us/library/ms790295.aspx). This is the recommended way for installing device drivers.

These files alone will correctly install the mvBlueFOX as a recognized device on the target system. However to access the device from any kind of application the base libraries for the Impact Acquire interface will be needed as well.

mvVirtualDevice

  • mvVirtualDevice.dll can be copied somewhere in the systems path or into the applications directory

mvVirtualDevice is able to connect to the FreeImage library for loading JPEG, PNG and TIFF images from hard disk. See FreeImage Support for details. The driver will try to load the FreeImage libraries from %MVIMPACT_ACQUIRE_DIR%/Toolkits//FreeImage3160/bin/Release/FreeImage/<platform> so this is where the library needs to be to make this work.

Note
More information about locations of libraries within the standard installation is summarized at Locating Runtime Libraries.

Environment Variables

When not re-distributing the original Impact Acquire installation packages an application might need certain environment variables in order to run properly. As not every possible setup needs any of the variables described here, they will not be created by default, but must be added as needed to a custom client installer. This chapter briefly explains all environment variables that are important when deploying a Impact Acquire based application.

Common Environment Variables

MVIMPACT_ACQUIRE_DIR

The MVIMPACT_ACQUIRE_DIR variable is needed by some applications in order to locate certain files. E.g. GigEConfigure will use this variable to locate the GigE Vision™ capture driver when the tool is used to install the driver. Also the mvDeviceManager library needs it in order to set up some process local environment variables relative to it. Thus without this variable GenICam compliant devices (mvBlueCOUGAR, mvBlueFOX3) cannot be operated. The variable must point to the root folder of the Impact Acquire related modules.

MVIMPACT_ACQUIRE_DATA_DIR

The MVIMPACT_ACQUIRE_DATA_DIR variable is needed in order to setup the cache path for GenICam XML files. The folder pointed to should provide read AND write access for the user. The required folder structure below this folder should look like this:

  MVIMPACT_ACQUIRE_DATA_DIR
    |- GenICam     <-- Here pre-processed GenICam files will be stored by the runtime. This will speed up initialisation time of devices

BVS CA-GT, mvBlueCOUGAR, mvBlueFOX3, BVS CA-BN (mvBlueNAOS)

GENICAM_GENTL32_PATH

The GENICAM_GENTL32_PATH variable is needed for reasons described in the GenICam GenTL specification (see GenICam downloads on the EMVA homepage (http://www.emva.org) to get a copy of the latest version OR use the one provided together with the installation archive you have installed the driver on your development system from). An application should always check whether this variable already exists as other applications might register it as well. Therefore every application shall only APPEND data to existing variables and shall only remove the part that was added without necessarily deleting the full variable. The variable shall contain the path to the folder containing 32-bit versions of *.cti (see above) files (typically located in the bin folder of the folder pointed to by MVIMPACT_ACQUIRE_DIR.

GENICAM_GENTL64_PATH

The GENICAM_GENTL64_PATH variable is needed for the very same reasons as the GENICAM_GENTL32_PATH variable when working with 64-bit applications and has the same requirements.

Linux

For Linux most of the stuff mentioned in Non-MSI Based Setup Routines applies as well even though instead of *.dll files the corresponding *.so files have to be deployed on the target machine. Apart from that everything related to kernel drivers usually doesn't apply here with the exception of BVS CA-BN (mvBlueNAOS) device drivers which come with their own kernel driver. If for any reason the original installation packages shall not be used the corresponding install scripts coming with that packages can be used to reverse engineer what needs to be done. As stated previously this the NOT recommended!

BVS CA-GT, mvBlueCOUGAR, mvBlueFOX3, BVS CA-BN (mvBlueNAOS)

GenICam Runtime

For installation on a Linux-i686 system the files with the -i86 suffix must be extracted. On a Linux-x64_86 system the corresponding packages with the -x64.tgz suffix must be used.

mkdir /opt/genicam
tar xzvf GenICam_V3_4_0-Linux32_i86_gcc48-Runtime.tgz -C /opt/genicam

These variables must be added to the environment, e.g. by placing these lines in the .profile or .bashrc file.

export GENICAM_ROOT_V3_4=/opt/genicam
#if the next line shall work, $HOME/tmp must exist, which it does not by default, thus you might want to create it OR use the global 'tmp' folder
#export GENICAM_CACHE_V3_4=$HOME/tmp
export GENICAM_CACHE_V3_4=/tmp
export GENICAM_LOG_CONFIG_V3_4=$GENICAM_ROOT_V3_4/log/config-unix/DebugLogging.properties

In case you are developing applications using the GenICam SDK add the GenICam include path to your pre-processor options, e.g:

CPPFLAGS += $(GENICAM_ROOT_V3_4)/include
and the GenICam lib resp. lib64 path to your linker options, e.g:
ifeq ($(DEST),$(filter $(DEST),x86_64))
LIB_SUBDIR=bin/Linux64_x64
else
LIB_SUBDIR=bin/Linux32_i86
endif
LDFLAGS += $(GENICAM_ROOT_V3_4)/$(LIB_SUBDIR) -lGCBase_gcc48_v3_4 -lGenApi_gcc48_v3_4 -lMathParser_gcc48_v3_4 -lLog_gcc48_v3_4.'

Finally

$(GENICAM_ROOT_V3_4)/$(LIB_SUBDIR)

must somehow end up in the systems library search path thus you might want to add a file to

/etc/ld.so.conf.d/genicam.conf

containing the following line:

/opt/genicam/bin/Linux32_i86/

OR you can use a different mechanism.

Embedded Linux

The Impact Acquire runtime libraries (*.so) from the installation archive for your target machine (*.tgz) are sufficient for including the Impact Acquire driver into your own embedded Linux distribution. The following chapter will demonstrate how to achieve this via the Yocto Project.

Yocto Project

The Yocto Project is an open-source framework that helps users to create a custom Linux distribution. To use Balluff imaging devices on your embedded system, you will need to create Bitbake recipes to package the Impact Acquire libraries which are already compiled by us for your target system, create Bitbake recipes to cross-compile and package your machine vision applications using the Impact Acquire API, and install these packages into your own Linux image. In this example, we will guide you through:

  • Package and install the Impact Acquire libraries for each device (i.e. BVS CA-BN (mvBlueNAOS), USB3 Vision™ devices, GigE Vision™ devices, mvBlueFOX and mvVirtualDevice);
  • Cross-compile, package and install the Impact Acquire sample programs;
  • Configure and build the final image.

Install Impact Acquire Libraries

The Yocto Project uses a layer module (i.e. meta-layers) to logically modulate and separate metadata in a build. Therefore, it's a good pratice to create a meta-layer for the Impact Acquire driver packages and programs on top of your Linux distribution or on top of a BSP (Board Support Package) provided by your hardware manufacturer. Once the Yocto build environment and the base Linux distribution have been set, create a meta-layer in the source directory:

$ bitbake-layers create-layer meta-mvimpact-acquire

Once the Impact Acquire meta-layer has been created, open the conf/bblayers.conf file in the build directory and add the following line:

BBLAYERS += "${BSPDIR}/sources/meta-mvimpact-acquire"

Now it's time to install the Impact Acquire common runtime libraries and device-specific runtime libraries.

Install Common Impact Acquire Libraries

There are some libraries that are needed by every Impact Acquire driver:

  • mvDeviceManager.so
  • mvPropHandling.so
  • expat.so
  • freeimage.so

Therefore, if multiple device drivers are going to be installed on the target machine, it's better to install these common libraries by a separate Bitbake recipe.

Since these runtime libraries are shipped in both the GenICam GenTL specific and the mvBlueFOX specific mvIMAPCT Acquire installation archives, you first need to download the latest *.tgz archive for your target machine from the Balluff website (https://www.balluff.com/en-de/downloads/software). In this demonstration, the mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz for an arm64 platform will be used.

Note
Please download the *.tgz file that is suitable for your devices and your target system. User log-in is required for downloading these files.

Once the installation archive has been downloaded, navigate to the source directory, copy the *.tgz file to the recipe directory and create a Bitbake recipe for installing the common runtime libraries:

$ cd meta-mvimpact-acquire && mkdir -p recipes-mvimpactacquire/mvimpact-acquire/files
$ cp -r ~/Downloads/mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz recipes-mvimpactacquire/mvimpact-acquire/files/
$ touch recipes-mvimpactacquire/mvimpact-acquire/mvimpact-acquire-base_3.0.0.bb

The demo Bitbake recipe mvimpact-acquire-base_3.0.0 looks like this:

SUMMARY = "Installs Impact Acquire base libraries"
DESCRIPTION = "This recipe installs Impact Acquire base libraries for all Balluff imaging and image capture devices."
HOMEPAGE = "https://www.balluff.com"
LICENSE_FLAGS = "EULA"
LICENSE_FLAGS_WHITELIST = "EULA"
LICENSE = "EULA"
LIC_FILES_CHKSUM = "file://${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/doc/EULA/EULA.txt;md5=83910cf672befabf2f24435e2581c79f"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}"
SRC_URI = "file://mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz"
TARGET = "arm64"
MVIA_SUBDIR = "opt/Impact_Acquire"
MVIA_LIB_SUBDIR = "lib"
TOOLKITS_LIB_SUBDIR = "Toolkits"
MV_DATA_DIR = "opt/Impact_Acquire/data"
do_install() {
# install Impact Acquire runtime binaries
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/FreeImage3160/bin/Release/FreeImage/${TARGET}
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libmvDeviceManager.so.${PV} ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libmvPropHandling.so.${PV} ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/Toolkits/expat/bin/${TARGET}/lib/*.so.* ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/Toolkits/FreeImage3160/bin/Release/FreeImage/${TARGET}/*.so ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/FreeImage3160/bin/Release/FreeImage/${TARGET}
# set environment variables for Impact Acquire
install -m 0755 -d ${D}${sysconfdir}/profile.d
echo 'export MVIMPACT_ACQUIRE_DIR=/opt/Impact_Acquire' >> ${D}${sysconfdir}/profile.d/acquire.sh
echo 'export MVIMPACT_ACQUIRE_DATA_DIR=/opt/Impact_Acquire/data' >> ${D}${sysconfdir}/profile.d/acquire.sh
# set library search paths for the dynamic linker
install -m 0755 -d ${D}${sysconfdir}/ld.so.conf.d
echo '/opt/Impact_Acquire/lib' >> ${D}${sysconfdir}/ld.so.conf.d/acquire.conf
echo '/opt/Impact_Acquire/Toolkits' >> ${D}${sysconfdir}/ld.so.conf.d/acquire.conf
# set up logfiles
install -m 0755 -d ${D}${base_prefix}/${MV_DATA_DIR}/logs
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/apps/mvDebugFlags.mvd ${D}${base_prefix}/${MV_DATA_DIR}/logs/
}
INHIBIT_PACKAGE_STRIP = "1"
INSANE_SKIP_${PN} += "dev-so \
already-stripped \
ldflags"
PACKAGES = "${PN} ${PN}-dev ${PN}-doc"
FILES_${PN} += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so.* \
${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/lib*.so.* \
${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/FreeImage3160/bin/Release/FreeImage/${TARGET}/lib*.so \
${sysconfdir}/profile.d/*.sh \
${sysconfdir}/ld.so.conf.d/*.conf"
FILES_${PN}-dev += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so \
${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/lib*.so"
FILES_${PN}-doc += "${base_prefix}/${MV_DATA_DIR}/logs"
Note
As a unique signature of a task's inputs, checksum indicates when the input data change. Therefore, you need to update the checksum of the license file if it has been changed. Run md5sum [file_name] to check the current MD5 checksum of the file and update it in your recipe.

After the recipe has been created, run bitbake to build it:

$ bitbake mvimpact-acquire-base

Install the Impact Acquire PCIe Kernel Module

The Impact Acquire PCIe kernel module is needed in order to use BVS CA-BN (mvBlueNAOS) devices. Before compiling the out-of-tree kernel module, run the configuration of the virtual kernel from the build directory to create a workspace directory containing the kernel source:

$ bitbake -c menuconfig virtual/kernel
Note
Since the Impact Acquire PCIe kernel module uses the userspace I/O driver, please make sure that it is marked as built-in or as module in the kernel configuration.

The source code of Impact Acquire PCIe kernel module is provided by the mvGenTL installation archive (version >= 2.44.0), therefore you first need to download the mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz from the Balluff website (https://www.balluff.com/en-de/downloads/software). Assume the target platform is arm64. Skip this step if the same *.tgz has been downloaded during the previous step Install Common Impact Acquire Libraries.

$ cp -r ~/Downloads/mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz recipes-mvimpactacquire/mvimpact-acquire/files/

Now navigate to the source directory and create a Bitbake recipe for installing the Impact Acquire kernel module:

$ touch recipes-mvimpactacquire/mvimpact-acquire/mvpci-mod_3.0.0.bb

The demo Bitbake recipe mvpci-mod_3.0.0 looks like this:

SUMMARY = "Builds the BVS CA-BN (mvBlueNAOS) external Linux kernel module"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/kernelmodules/linux/PCIe/README.txt;md5=ef7c92a2141d1b613ae0072bf978cd85 \
file://${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/kernelmodules/linux/PCIe/LICENSES/GPL-2.0-or-later.txt;md5=3d26203303a722dedc6bf909d95ba815"
inherit module
SRC_URI = "file://mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz"
S = "${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/kernelmodules/linux/PCIe"
# The inherit of module.bbclass will automatically name module packages with
# "kernel-module-" prefix as required by the oe-core build environment.
RPROVIDES_${PN} += "kernel-module-mvpci"
Note
As a unique signature of a task's inputs, checksum indicates when the input data change. Therefore, you need to update the checksum of the license file if it has been changed. Run md5sum [file_name] to check the current MD5 checksum of the file and update it in your recipe.

After the recipe has been created, run bitbake to build it:

$ bitbake mvpci-mod

Install GenICam GenTL Specific Impact Acquire Libraries

Apart from the common Impact Acquire runtime libraries, you need to install the GenICam GenTL specific libraries from the mvGenTL installation archive in order to use USB3 Vision™ devices, GigE Vision™ devices or BVS CA-BN (mvBlueNAOS) devices. Therefore, download the mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz from the Balluff website (https://www.balluff.com/en-de/downloads/software). Assume the target platform is arm64. Skip this step if the same *.tgz has been downloaded during the previous step Install Common Impact Acquire Libraries.

$ cp -r ~/Downloads/mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz recipes-mvimpactacquire/mvimpact-acquire/files/

Create a Bitbake recipe for installing GenICam GenTL specific Impact Acquire libraries:

$ touch recipes-mvimpactacquire/mvimpact-acquire/mvimpact-acquire-gentl_3.0.0.bb

The demo Bitbake recipe mvimpact-acquire-gentl_3.0.0 looks like this:

SUMMARY = "Installs GenICam GenTL specific Impact Acquire libraries"
DESCRIPTION = "This recipe installs Impact Acquire GenTL driver libraries for USB3 Vision, GigE Vision and BVS CA-BN (mvBlueNAOS) devices on ARM64 platforms."
HOMEPAGE = "https://www.balluff.com"
LICENSE_FLAGS = "EULA"
LICENSE_FLAGS_WHITELIST = "EULA"
LICENSE = "EULA"
LIC_FILES_CHKSUM = "file://${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/doc/EULA/EULA.txt;md5=83910cf672befabf2f24435e2581c79f"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}"
SRC_URI = "file://mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz"
TARGET = "arm64"
MVIA_SUBDIR = "opt/Impact_Acquire"
MVIA_LIB_SUBDIR = "lib"
GENICAM_LIB_SUBDIR = "runtime"
TOOLKITS_LIB_SUBDIR = "Toolkits"
MV_DATA_DIR = "opt/Impact_Acquire/data"
RDEPENDS_${PN} += " mvimpact-acquire-base"
do_install() {
# install Impact Acquire runtime binaries and dependencies.
install -m 0755 -d ${D}${base_prefix}
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}/bin/Linux64_ARM
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libudev/bin/${TARGET}/lib
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libusb-1.0.21/bin/${TARGET}/lib
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libmvGenTLConsumer.so.${PV} ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libmvGenTLProducer.so.${PV} ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libmvGenTLProducer.PCIe.so.${PV} ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libBVS_CA-BN.H.*.so ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libBVS_CA-BN.S.*.so ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/runtime/bin/Linux64_ARM/*.so ${D}${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}/bin/Linux64_ARM
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/Toolkits/libudev/bin/${TARGET}/lib/*.so.* ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libudev/bin/${TARGET}/lib
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/Toolkits/libusb-1.0.21/bin/${TARGET}/lib/*.so.* ${D}${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libusb-1.0.21/bin/${TARGET}/lib
# create softlink for libmvGenTLProducer
cd ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
ln -sf libmvGenTLProducer.so libmvGenTLProducer.cti
ln -sf libmvGenTLProducer.PCIe.so libmvGenTLProducer.PCIe.cti
# set environment variables for Impact Acquire
install -m 0755 -d ${D}${sysconfdir}/profile.d
echo 'export GENICAM_ROOT=/opt/Impact_Acquire/runtime' >> ${D}${sysconfdir}/profile.d/genicam.sh
echo 'export GENICAM_ROOT_V3_1=/opt/Impact_Acquire/runtime' >> ${D}${sysconfdir}/profile.d/genicam.sh
echo 'export GENICAM_GENTL64_PATH=/opt/Impact_Acquire/lib' >> ${D}${sysconfdir}/profile.d/genicam.sh
echo 'export GENICAM_CACHE_V3_1=/opt/Impact_Acquire/runtime/cache/v3_1' >> ${D}${sysconfdir}/profile.d/genicam.sh
echo 'export GENICAM_LOG_CONFIG_V3_1=/opt/Impact_Acquire/runtime/log/config-unix/DefaultLogging.properties' >> ${D}${sysconfdir}/profile.d/genicam.sh
# set library search path for the dynamic linker
install -m 0755 -d ${D}${sysconfdir}/ld.so.conf.d
echo '/opt/Impact_Acquire/runtime/bin/Linux64_ARM' >> ${D}${sysconfdir}/ld.so.conf.d/genicam.conf
# define udev rules for USB3 Vision devices
install -m 0755 -d ${D}${sysconfdir}/udev/rules.d
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/Scripts/52-mvbf3.rules ${D}${sysconfdir}/udev/rules.d/
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/Scripts/52-U3V.rules ${D}${sysconfdir}/udev/rules.d/
# define udev rules for pcie cameras
install -m 0755 -d ${D}/usr/local/bin/
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/Scripts/51-udev-pcie.rules ${D}${sysconfdir}/udev/rules.d/
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/Scripts/make_device.sh ${D}/usr/local/bin/
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/Scripts/device_namer.sh ${D}/usr/local/bin/
# install GenICam Cache and Logs
cp -r ${S}/mvIMPACT_Acquire-ARM64-${PV}/runtime/cache ${D}${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}
cp -r ${S}/mvIMPACT_Acquire-ARM64-${PV}/runtime/log ${D}${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}
# set up GenICam cache and xml file location
install -m 0755 -d ${D}${base_prefix}/${MV_DATA_DIR}/genicam
# increase usb core memory for USB3 Vision devices
echo 'sh -c "echo 128 > /sys/module/usbcore/parameters/usbfs_memory_mb"' > ${D}${sysconfdir}/profile.d/usbfs_memory.sh
# increase GigE buffer size for GigE Vision devices
install -m 0755 -d ${D}${sysconfdir}/sysctl.d
echo 'net.core.wmem_max=16777216' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
echo 'net.core.rmem_max=16777216' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
echo 'net.core.wmem_default=16777216' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
echo 'net.core.rmem_default=16777216' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
echo 'net.core.udp_mem=10240 87380 16777216' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
echo 'net.core.netdev_max_backlog=10000' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
echo 'net.ipv4.conf.all.rp_filter = 2' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
echo 'net.ipv4.conf.default.rp_filter = 2' >> ${D}${sysconfdir}/sysctl.d/62-buffers-performance.conf
}
INHIBIT_PACKAGE_STRIP = "1"
INSANE_SKIP_${PN} += "dev-so \
already-stripped \
ldflags"
PACKAGES = "${PN}-dbg ${PN} ${PN}-dev ${PN}-doc"
FILES_${PN} += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so.* \
${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/libBVS_CA-BN.H.*.so \
${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/libBVS_CA-BN.S.*.so \
${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}/bin/Linux64_ARM/lib*.so \
${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libudev/bin/${TARGET}/lib/lib*.so.* \
${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libusb-1.0.21/bin/${TARGET}/lib/lib*.so.* \
${sysconfdir}/profile.d/*.sh \
${sysconfdir}/ld.so.conf.d/*.conf \
${sysconfdir}/udev/rules.d/*.rules \
${sysconfdir}/sysctl.d/*.conf"
FILES_${PN}-dev += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so \
${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/*.cti \
${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libudev/bin/${TARGET}/lib/lib*.so \
${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libusb-1.0.21/bin/${TARGET}/lib/lib*.so"
FILES_${PN}-doc += "/usr/local/bin/*.sh \
${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}/cache \
${base_prefix}/${MVIA_SUBDIR}/${GENICAM_LIB_SUBDIR}/log \
${base_prefix}/${MV_DATA_DIR}/genicam"
FILES_${PN}-dbg += "${base_prefix}/${MVIA_SUBDIR}/${TOOLKITS_LIB_SUBDIR}/libusb-1.0.21/bin/${TARGET}/lib/.debug"
Note
As a unique signature of a task's inputs, checksum indicates when the input data change. Therefore, you need to update the checksum of the license file if it has been changed. Run md5sum [file_name] to check the current MD5 checksum of the file and update it in your recipe.

After the recipe has been created, run bitbake to build it:

$ bitbake mvimpact-acquire-gentl

Install mvBlueFOX Specific Impact Acquire Libraries

Apart from the common Impact Acquire runtime libraries, you need to install the mvBlueFOX specific libraries from the mvBlueFOX installation archive in order to use mvBlueFOX devices. Therefore, download the mvBlueFOX-ARM64_gnu-3.0.0.tgz from the Balluff website (https://www.balluff.com/en-de/downloads/software). Assume the target platform is arm64. Skip this step if the same *.tgz has been downloaded during the previous step Install Common Impact Acquire Libraries.

$ cp -r ~/Downloads/mvBlueFOX-ARM64_gnu-3.0.0.tgz recipes-mvimpactacquire/mvimpact-acquire/files/

Create a Bitbake recipe for installing mvBlueFOX specific Impact Acquire libraries:

$ touch recipes-mvimpactacquire/mvimpact-acquire/mvimpact-acquire-mvbluefox_3.0.0.bb

The demo Bitbake recipe mvimpact-acquire-mvbluefox_3.0.0 looks like this:

SUMMARY = "Installs mvBlueFOX specific Impact Acquire libraries"
DESCRIPTION = "This recipe installs Impact Acquire mvBlueFOX driver libraries for Balluff USB2 cameras."
HOMEPAGE = "https://www.balluff.com"
LICENSE_FLAGS = "EULA"
LICENSE_FLAGS_WHITELIST = "EULA"
LICENSE = "EULA"
LIC_FILES_CHKSUM = "file://${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/doc/EULA/EULA.txt;md5=83910cf672befabf2f24435e2581c79f"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}"
SRC_URI = "file://mvBlueFOX-ARM64_gnu-3.0.0.tgz"
TARGET = "arm64"
MVIA_SUBDIR = "opt/Impact_Acquire"
MVIA_LIB_SUBDIR = "lib"
RDEPENDS_${PN} += " mvimpact-acquire-base"
do_install() {
# install Impact Acquire runtime binaries and dependencies.
install -m 0755 -d ${D}${base_prefix}
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libmvBlueFOX.so.${PV} ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libusb-1.0.so ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
# define udev rules for mvBlueFOX
install -m 0755 -d ${D}${sysconfdir}/udev/rules.d
install -m 0755 ${S}/mvIMPACT_Acquire-ARM64-${PV}/Scripts/51-mvbf.rules ${D}${sysconfdir}/udev/rules.d/
}
INHIBIT_PACKAGE_STRIP = "1"
INSANE_SKIP_${PN} += "dev-so \
already-stripped \
ldflags"
PACKAGES = "${PN}-dbg ${PN} ${PN}-dev"
FILES_${PN} += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so.* \
${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/libusb-1.0.so \
${sysconfdir}/udev/rules.d/*.rules"
FILES_${PN}-dev += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so"
FILES_${PN}-dbg += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/.debug"
Note
As a unique signature of a task's inputs, checksum indicates when the input data change. Therefore, you need to update the checksum of the license file if it has been changed. Run md5sum [file_name] to check the current MD5 checksum of the file and update it in your recipe.

After the recipe has been created, run bitbake to build it:

$ bitbake mvimpact-acquire-mvbluefox

Install mvVirtualDevice Specific Impact Acquire Libraries

Apart from the common Impact Acquire runtime libraries, you need to install the mvVirtualDevice specific libraries from either the mvGenTL or the mvBlueFOX installation archive in order to use mvVirtualDevice. In this example, the mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz will be downloaded and used. Assume the target platform is arm64. Skip this step if the same *.tgz has been downloaded during the previous step Install Common Impact Acquire Libraries or Install GenICam GenTL Specific Impact Acquire Libraries.

$ cp -r ~/Downloads/mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz recipes-mvimpactacquire/mvimpact-acquire/files/

Create a Bitbake recipe for installing mvVirtualDevice specific Impact Acquire libraries:

$ touch recipes-mvimpactacquire/mvimpact-acquire/mvimpact-acquire-virtualdevice_3.0.0.bb

The demo Bitbake recipe mvimpact-acquire-virtualdevice_3.0.0 looks like this:

SUMMARY = "Installs virtual device specific Impact Acquire libraries"
DESCRIPTION = "This recipe installs Impact Acquire driver libraries for virtual devices."
HOMEPAGE = "https://www.balluff.com"
LICENSE_FLAGS = "EULA"
LICENSE_FLAGS_WHITELIST = "EULA"
LICENSE = "EULA"
LIC_FILES_CHKSUM = "file://${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/doc/EULA/EULA.txt;md5=83910cf672befabf2f24435e2581c79f"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}"
SRC_URI = "file://mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz"
TARGET = "arm64"
MVIA_SUBDIR = "opt/Impact_Acquire"
MVIA_LIB_SUBDIR = "lib"
RDEPENDS_${PN} += " mvimpactacquirebase"
do_install() {
# install mvIA runtime binaries and dependencies.
install -m 0755 -d ${D}${base_prefix}
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
oe_soinstall ${S}/mvIMPACT_Acquire-ARM64-${PV}/lib/${TARGET}/libmvVirtualDevice.so.${PV} ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}
}
INHIBIT_PACKAGE_STRIP = "1"
INSANE_SKIP_${PN} += "dev-so \
already-stripped \
ldflags"
PACKAGES = "${PN} ${PN}-dev"
FILES_${PN} += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so.*"
FILES_${PN}-dev += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_LIB_SUBDIR}/lib*.so"
Note
As a unique signature of a task's inputs, checksum indicates when the input data change. Therefore, you need to update the checksum of the license file if it has been changed. Run md5sum [file_name] to check the current MD5 checksum of the file and update it in your recipe.

After the recipe has been created, run bitbake to build it:

$ bitbake mvimpact-acquire-virtualdevice

Cross-Compile Impact Acquire Sample Programs

After the required Impact Acquire library packages have been successfully built, we can then use Bitbake to cross-compile programs with the Impact Acquire API. Since mvIMAPCT Acquire installation archieves already provide sample programs with CMake files and Bitbake supports CMake, we can use CMake to cross-compile these programs.

First, create a Bitbake recipe for cross-compiling the sample programs:

$ touch recipes-mvimpactacquire/mvimpact-acquire/mvimpact-acquire-examples_3.0.0.bb

In this demo recipe we will use mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz as the source file (you can also use mvBlueFOX-ARM64_gnu-3.0.0.tgz if needed). All source code is located under mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz/mvIMPACT_Acquire-ARM64-3.0.0/apps.

Here is how the demo recipe mvimpact-acquire-examples_3.0.0.bb looks like:

SUMMARY = "Builds and installs Impact Acquire sample programs"
DESCRIPTION = "This recipe builds and installs Impact Acquire sample programs."
HOMEPAGE = "https://www.balluff.com"
LICENSE_FLAGS = "EULA"
LICENSE_FLAGS_WHITELIST = "EULA"
LICENSE = "EULA"
LIC_FILES_CHKSUM = "file://${WORKDIR}/mvIMPACT_Acquire-ARM64-3.0.0/doc/EULA/EULA.txt;md5=83910cf672befabf2f24435e2581c79f"
SRC_URI = "file://mvGenTL_Acquire-ARM64_gnu-3.0.0.tgz"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}/mvIMPACT_Acquire-ARM64-${PV}/apps"
MVIA_SUBDIR = "opt/mvIMPACT_Acquire"
MVIA_APP_SUBDIR = "apps"
RDEPENDS_${PN} += " mvimpact-acquire-base"
export MVIMPACT_ACQUIRE_DIR="${WORKDIR}/mvIMPACT_Acquire-ARM64-${PV}/"
export LDFLAGS="${TARGET_LDFLAGS} \
-Wl,-rpath-link,${MVIMPACT_ACQUIRE_DIR}lib/arm64 \
-Wl,-rpath-link,${MVIMPACT_ACQUIRE_DIR}Toolkits/expat/bin/arm64/lib"
do_softlink() {
#!/bin/sh -e
cd ${MVIMPACT_ACQUIRE_DIR}Toolkits/expat/bin/arm64/lib
ln -sf libexpat.so.1.6.0 libexpat.so.1
ln -sf libexpat.so.1 libexpat.so
}
addtask softlink after do_fetch before do_configure
inherit pkgconfig cmake
do_install() {
install -m 0755 -d ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_APP_SUBDIR}
install -m 0755 ${WORKDIR}/build/bin/* ${D}${base_prefix}/${MVIA_SUBDIR}/${MVIA_APP_SUBDIR}
}
FILES_${PN} += "${base_prefix}/${MVIA_SUBDIR}/${MVIA_APP_SUBDIR}/*"
Note
As a unique signature of a task's inputs, checksum indicates when the input data change. Therefore, you need to update the checksum of the license file if it has been changed. Run md5sum [file_name] to check the current MD5 checksum of the file and update it in your recipe.

After the recipe has been created, run bitbake to build it:

$ bitbake mvimpact-acquire-examples
Note
In order for the Impact Acquire CMake to be correctly configured, you may need to set the CMAKE_FIND_ROOT_PATH_MODE_INCLUDE variable to BOTH in the cmake.bbclass file.

Configure and Build the Image

Before building the custom Linux image with the Impact Acquire API, we need to install the successfully built Impact Acquire packages to the custom Linux image. In the following demonstration, all packages from above will be installed. You can also just install the ones that you need.

IMAGE_INSTALL_append = " mvimpactacquirebase"
IMAGE_INSTALL_append = " mvimpactacquirebase-dev"
IMAGE_INSTALL_append = " mvimpactacquirebase-doc"
IMAGE_INSTALL_append = " mvgentl"
IMAGE_INSTALL_append = " mvgentl-dev"
IMAGE_INSTALL_append = " mvgentl-doc"
IMAGE_INSTALL_append = " mvbluefox"
IMAGE_INSTALL_append = " mvbluefox-dev"
IMAGE_INSTALL_append = " mvimpact-acquire-virtualdevice"
IMAGE_INSTALL_append = " mvimpact-acquire-virtualdevice-dev"
IMAGE_INSTALL_append = " mvexamples"

After that, bitbake the image to build it for your target system.

MacOS

Since
Version 2.50.0 of this SDK

Impact Acquire is available as a dmg (Apple disk image) for macOS 12 (Monterey) on ARM architectures like the Mac mini. This disk image contains files for working with Balluff GigEVision™ devices, but does not contain a full installer. These files can be used if you also have a file-based installation.

Package Contents

Files below the following folders might be interesting for deployment

  • lib
  • runtime

Contents of the following folders might only be interesting if packaging with parts of our provided software:

  • apps
  • bin
  • CMake
  • common
  • doc
  • DriverBase
  • FirmwareUpdates
  • mvDeviceManager
  • mvIMPACT_CPP
  • mvPropHandling
  • Toolkits

Dependencies

For the libraries, libexpat is necessary which is available on homebrew. Additionally, for using the GUI-based tools, wxWidgets 3.x might have to be installed.

Linking

For using mvGenTL_Acquire within your software, you may already have set the install path of the used Impact Acquire libraries. This is also necessary on the target system, so you may have to adapt your installation scripts.

Optimization of Network Parameters

To improve performance, some system parameters may have to be adapted on the target system. For some of them, you may need to have administrator privileges.

  • An MTU of 9000 (at least 8000 should be used)
  • Via sysctl, some more optimizations could be made:
    sudo sysctl -w kern.ipc.maxsockbuf=8388608 // or more if possible
    sudo sysctl -w net.inet.udp.maxdgram=9216
    sudo sysctl -w net.inet.raw.recvspace=16777216 // or more if possible
    sudo sysctl -w net.inet.udp.recvspace=7454720 // or more if possible
    Note
    These changes are only valid for the running session and have to be set after each start of the system