Impact Acquire SDK C++
Building, Linking And Running Applications Using Impact Acquire

Supported Compilers

Windows

The following compilers have been tested successfully with the Impact Acquire SDK on Windows:

  • Microsoft Visual Studio® 2008, 2010, 2012, 2013, 2015, 2017 and 2019
  • Borland™ C++ Builder 5 and 6
  • CodeGear™ C++ Builder 2007
  • Borland™ Developer Studio 2006, 2007, 2008 and 2009
  • Embarcadero RAD Studio XE2, XE8 and 10.3 Version 20

On Windows for the examples only one set of project files will be part of the installation packages. At the time of writing this was Visual Studio 2013. However as Impact Acquire comes with CMake support files makefiles and project files for a wide variety of other compilers can be generated. Please refer to the Building And Linking Using CMake section for detailed instructions. When generating makefiles or project files for a compiler that is not C++11 or above, be aware that using CMake will automatically result in legacy C++ code being used for the example applications.

Linux

Impact Acquire SDK has been compiled successfully with up to gcc 11.3.

Note
Since version 2.37.0 Impact Acquire is no longer shipped for Linux x86 and ARMsf! For details please also refer to Device And Operating System Support Across Released Versions.

Additional information about supported compilers and minimum versions for libstdc++/libgcc can be found here

Traditional makefiles as shipped with Impact Acquire at the time of writing will support a wide variety of target platforms. However since CMake support has been added to the SDK these makefiles will no longer be maintained. The recommended way to build makefiles for compiling the SDK examples these days is by using CMake. This also automatically uses C++11 or above versions of the example code if supported by the target compiler. The ready to use makefiles will only compile C++03 versions of the code. But as Impact Acquire comes with CMake support files, makefiles and project files(e.g. for Eclipse) for a wide variety of other compilers(clang, ...) and platforms can be generated very easily. Please refer to the Building And Linking Using CMake section for detailed instructions.

MacOS

Impact Acquire SDK has been compiled successfully with with clang 13.0.6, 14.0.0 and 15.0.6.

The recommended way to build makefiles for compiling the SDK examples these days is by using CMake. This also automatically uses C++11 or above versions of the example code. Please refer to the Building And Linking Using CMake section for detailed instructions.

Building And Linking Using CMake

Impact Acquire's internals are built using CMake (https://cmake.org/) and the public interface as well as the example applications are shipped with CMake support as well. Therefore the recommended way of building the example applications or any code based on the Impact Acquire SDK is by using CMake as well.

For those not knowing CMake at all please refer to the CMake website and read about it. In short it is a build system or a tool that can generate Makefiles or e.g. Visual Studio project files. It is a great tool for those who don't want to manually edit makefiles and for those who don't like to maintain makefiles for a wide range of compilers, IDEs and platforms for a single project. At the time of writing Impact Acquire was shipped with Visual Studio 2013 example project files. However by using CMake you can generate Visual Studio or GNU Makefiles matching your compiler version for the example application very easy.

CMake? Never heard of it...

CMake is a build system. It is a set of tools which can be used to generate makefiles or e.g. Visual Studio project files for a wide range of compilers.

Note
There are lots of other things you can do with the CMake package but this is beyond the scope of this document.

To tell CMake what and how to generate makefiles a user needs to write configuration files understood by CMake. A big advantage of CMake is that e.g. a user does no longer need to understand the complicated internals of makefiles, that you no longer need to convert Visual Studio project files from one version to another and that you can build 'out of tree' very easily so you can keep your source tree completely free of build artifacts allowing faster searches etc. within your code. For more information refer to the CMake website: https://cmake.org/

The source code shipped with Impact Acquire comes with CMake support files. When you want to build or modify the example code using a compiler that is not supported by pre-generated makefiles that are shipped with the SDK right now you can simply use CMake to generate the necessary files. If you have never done that before the easiest way to start is probably the cmake-gui tool. Simply download at least version 3.8 of CMake, install it and start the cmake-gui tool.

After starting the tool you will see something like this:

Figure 1: CMake GUI - Startup
  • Click the 'Browse Source...' button and navigate into the "$(MVIMPACT_ACQUIRE_DIR)/apps" folder of the Impact Acquire installation
  • Click the 'Browse Build...' button an select a folder where you want the project files to be generated. The folder you select here will also contain the binaries you will build later. Typically this folder is outside the installation or source directory. Most of the time the installation folder will be read-only for standard users anyway
  • Now click the 'Configure' button
  • CMake will ask you if the target folder shall be created if it does not already exist. Select 'Yes'!
Figure 2: CMake GUI - Selection of output folder (the folder where the makefiles will be generated)

and select the compiler/IDE you want to generate files for (select 'Borland Makefiles' if you want to compile using a Borland compiler (e.g. when using RAD Studio or any Embarcadero C++ compiler package) OR follow the CMake instruction with Ninja support from the Embarcadero website: https://community.idera.com/developer-tools/b/blog/posts/using-cmake-with-the-free-embarcadero-c-compiler, http://docwiki.embarcadero.com/RADStudio/Rio/en/Using_CMake_with_C%2B%2B_Builder)

Figure 3: CMake GUI - Selection of the makefile generator

Afterwards CMake will create the target folder and will perform various checks and basic configuration work:

Figure 4: CMake GUI - After configuration process

Once this completed successfully you will notice a lot red properties in the upper half of the tool. These are CMake variables that have either directly or indirectly been created during the last step. Within the CMake GUI everything that is either new or has changed since the last configuration or generation run is displayed in red as there are usually so many parameters in complex projects it would be hard to see the differences otherwise. You can use the tool to modify individual properties once you know what you are doing. So right now there is nothing to worry about. Now click the 'Generate' button.

Figure 4: CMake GUI - After generation process

Everything went alright if no error messages are displayed in the lower output window of the application. The last message you should see there is Generating done. Now you can end the application and open the folder you did previously select for generating the files into. You will find all the project- or makefiles and a solution file (when working with Visual Studio on Windows) here. If you are working on Windows and have generated files for VIsual Studio just open the solution and you can build the examples and tools. On Linux Systems or if you have generated makefiles(e.g. for Borland) you can simply call make all instead.

Note
For some generators you might need to open an appropriate shell in order to call make successfully (e.g. a RAD Studio command shell)
Figure 5: CMake generated files

You might wonder why you cannot switch between 32-bit and 64-bit within that solution. CMake will always create projects for either 32- OR 64-bit. You can create a 2nd target folder and during the configuration process select a different generator/toolset for 64-bit output.

Note
One important thing to keep in mind: When working with CMake it is almost NEVER necessary to directly edit the project- or makefiles or make changes to the solution file. Change the corresponding CMake source files instead and rebuild the solution (or just the ZERO_CHECK project if you are working with Visual Studio on Windows). Whenever CMake detects a change in it's source files it will automatically recreate the makefiles and apply changes to e.g. a Visual Studio solution. This takes some time to get used to but is much easier than manually adjusting VIsual Studio build dependencies or project properties! Especially as most changes usually apply to Debug AND Release builds etc.. However also keep in mind that this doesn't apply to ALL properties of a project only those which are actually stored in the project file. The debugging properties (startup application, parameters debug connection for example are NOT part of the project thus can be configured as you are used to do it. This also makes perfect sense when thinking about it!
Figure 6: CMake generated solution

Some of the example applications and tools have certain requirements. If these are not met during the generation process CMake will output some messages why a certain target will not be available. For this target then there will also be no project file. Applications/tools with special requirements are:

  • ContinuousCaptureDirectX: This example needs a version of the DirectX SDK as it tries to link to some of the DirectX libraries. To build it define and environment variable DXSDK_DIR pointing to the top-level folder of the platform SDK or DirectX SDK containing the libraries before generating the project files. If you have already generated the project files simply delete the generated folder and re-run the CMake process.
  • DeviceConfigure, IPConfigure, ImpactControlCenter: These applications have been developed using wxWidgets thus wxWidgets needs to be found on the system you are trying to build them. You can simply install a wxWidgets version (3.x or greater) on the system before generating the project files OR you can define environment variables WX_WIDGETS_SOURCE_DIR, WX_WIDGETS_BUILD_DIR_X86 and WX_WIDGETS_BUILD_DIR_X64 to use a certain version of wxWidgets for the generation process. If you have already generated the project files simply delete the generated folder and re-run the CMake process.

GNU Makefiles

The GNU Makefiles CMake generates are quite sophisticated! For example the will allow to build each target individually and when doing that all the dependencies will automatically be resolved. So you can simply call

make myTarget

and myTarget as well as all it's dependencies will be built automatically.

Calling

make all VERBOSE=1

will output all the linker and compiler parameters for each file in each target.

And of course calling

make all -j9

will result in fast parallel builds on a machine with 8 cores. Always specify a value one higher than the actual number of cores on your build system.

CMake support? Cool! Tell me all about it!

Well if you are already familiar with CMake there is not too much to be said. You can simply integrate Impact Acquire into your build tree then. Impact Acquire comes with a CMake configuration file mvIMPACT_AcquireConfig.cmake located in the top-level folder of the installation. Simply include it into your build tree:

include($ENV{MVIMPACT_ACQUIRE_DIR}/mvIMPACT_AcquireConfig.cmake)

Afterwards you can use Impact Acquire imported targets and include directories. There are just a couple of variables you will need:

  • mvIMPACT_Acquire_INCLUDE_DIRS for all your target_include_directories statements
  • mvIMPACT_Acquire_LIBRARIES for all your target_link_libraries statements
    • you can also add mvIMPACT_Acquire::mvDeviceManager and mvIMPACT_Acquire::mvDisplay (Windows only) to your target_link_libraries statements instead if you want more control over the link requirements (e.g. if you do not want to use the mvDisplay library at all you also might not want to ship it thus consequently you will not link it)

So a very simple application using Impact Acquire might look like this inside the CMakeLists.txt file:

folder structure:

 root
  |
  |- myTarget
  |     |- CMakeLists.txt
  |     |- myCode.c
  |     |
  |    etc.
  |- CMakeLists.txt
  |
 etc.

the top-level CMakeLists then might contain something like this:

# more CMake code like project definition etc.
include($ENV{MVIMPACT_ACQUIRE_DIR}/mvIMPACT_AcquireConfig.cmake)
# more CMake code
add_subdirectory(myTarget)

the CMakeLists.txt in the folder myTarget might contain the following code:

# possibly more CMake code
add_executable(myTargetUsingMvIMPACT_Acquire myCode.c)
target_link_libraries(${TARGET} PRIVATE ${mvIMPACT_Acquire_LIBRARIES})
# most likely more CMake code

You may wonder why this example does not specify any include directories. Well you can do that if you like:

target_include_directories(${TARGET} PRIVATE ${mvIMPACT_Acquire_INCLUDE_DIRS})

However this statement actually is redundant as the libraries of mvIMPACT_Acquire_LIBRARIES already add these directories to their public link interface. You can therefore either add it if you like or skip it.

On Windows Impact Acquire uses the auto-link feature if not told otherwise. Please refer to Windows to understand what impact that might have on your application and how to configure it to suit your needs.

C++

For C++ applications not using the GenICam interface only the header mvIMPACT_acquire.h is needed. Applications also using the GenICam interface might need some addition header files:

  • mvIMPACT_acquire_GenICam.h
  • mvIMPACT_acquire_GenICam_CustomCommands.h
  • mvIMPACT_acquire_GenICam_FileStream.h

If you want to use certain helper classes like e.g. mvIMPACT::acquire::helper::RequestProvider you will need to include

  • mvIMPACT_acquire_helper.h

as well.

Note
This header makes heavy use of advanced C++11 and above features. Make sure you are using an up to date compiler for this! Make sure to include $(MVIMPACT_ACQUIRE_DIR)/CMake/cpp.standard.detection.cmake in your CMake build system then or define a CMake variable CPP_STANDARD_VERSION with the version/value of the C++ standard your compiler does understand (e.g. 11, 14, 17, ...) to tell this and other header files of Impact Acquire which features to use and which not!

Every header file shall be included like this:

#include <mvIMPACT_CPP/mvIMPACT_acquire.h>

Applications also using the display module used by various example applications another header file will be needed:

  • mvIMPACT_acquire_display.h

Include this file like this:

#include <mvDisplay/Include/mvIMPACT_acquire_display.h>

So always relative to the root directory of the full package. Then and only then

target_include_directories(${TARGET} PRIVATE ${mvIMPACT_Acquire_INCLUDE_DIRS})

will work properly!

Building The Examples And GUI Tools Using CMake

The source code shipped with Impact Acquire comes with CMake support files. When you want to build or modify the example code using a compiler that is not supported by pre-generated makefiles that are shipped with the SDK right now you can simply use CMake to generate the necessary files. You will find the top-level CMakeLists.txt file inside the apps folder of the Impact Acquire installation.

Using CMake To Generate Makefiles For Embarcadero C++ Builder With Ninja Support

Everything stated in this section is more or less copied from the corresponding Embarcadero documentation (http://docwiki.embarcadero.com/RADStudio/Rio/en/Using_CMake_with_C%2B%2B_Builder) and it is recommended to obtain up to date information from there. This is just meant to list the main steps needed in case the website is not available.

CMake Command-Line Support

RAD Studio 10.2 Tokyo Release 3 includes support for building CMake projects on the command line using RAD Studio's C++ Compilers. You can compile for Windows or for other platforms from Windows. CMake supports RAD Studio's Clang-enhanced compilers: BCCAARM for Android, BCCIOSARM64 for 64-bit iOS, BCCIOSARM for 32-bit iOS, BCC64 for 64-bit Windows, and BCC32X for 32-bit Windows. RAD Studio 10.2 Tokyo Release 3 also supports using Ninja with CMake. This allows for fast parallel compilation.

Installing CMake And Ninja

CMake

Download and install CMake 3.10 or higher. Use the binary installer, since it can optionally add CMake to the system path. Make sure you select that option during the installation.

CMake files are located in C:\Program Files (x86)\Embarcadero\Studio\19.0\cmake (your version might differ from 19.0 of course). However, to prevent errors in the build process, you need to move one file manually. Follow the steps below to do this:

  • Locate your CMake installation folder and the Modules\Platform sub-folder. E.g. C:\Program Files\CMake\share\cmake-3.10\Modules\Platform
  • Locate the Windows-Embarcadero.cmake file and make a backup.
  • Copy Windows-Embarcadero.cmake from the Studio\19.0\cmake folder and overwrite the version in the CMake folder.

Embarcadero claims to have greatly extended the inbuilt CMake support for the Windows compilers and you need to use this file to build successfully.

Ninja

Download and install Ninja 1.8.2 or above. You'll need to add it to the system path manually.

How To Use CMake

Start a RAD Studio command prompt from the Start menu, or by opening a command prompt and executing rsvars.bat in the RAD Studio bin folder.

  • To target Win32: cmake -DCMAKE_C_COMPILER=bcc32x.exe -DCMAKE_CXX_COMPILER=bcc32x.exe -G Ninja <directory>
  • To target Win64: cmake -DCMAKE_C_COMPILER=bcc64.exe -DCMAKE_CXX_COMPILER=bcc64.exe -G Ninja <directory>

As and example how this could look like in a Windows batch file please refer to the following piece of code:

@echo off
setlocal
rem 32-bit
set BUILD_DIR=%MVIMPACT_ACQUIRE_DIR%\..\mvIMPACT_Acquire_Build_Examples_Embarcadero_Ninja_x86
if not exist %BUILD_DIR% (
mkdir %BUILD_DIR%
)
cd %BUILD_DIR%
cmake -Wno-dev -DCMAKE_C_COMPILER=bcc32x.exe -DCMAKE_CXX_COMPILER=bcc32x.exe -DCMAKE_BUILD_TYPE_INIT=Release -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -G Ninja "%MVIMPACT_ACQUIRE_DIR%/apps"
if %ERRORLEVEL% GEQ 1 (
echo "Failed to run CMake!"
goto Error
)
rem 64-bit
set BUILD_DIR=%MVIMPACT_ACQUIRE_DIR%\..\mvIMPACT_Acquire_Build_Examples_Embarcadero_Ninja_x86_64
if not exist %BUILD_DIR% (
mkdir %BUILD_DIR%
)
cd %BUILD_DIR%
cmake -Wno-dev -DCMAKE_C_COMPILER=bcc64.exe -DCMAKE_CXX_COMPILER=bcc64.exe -DCMAKE_BUILD_TYPE_INIT=Release -G Ninja "%MVIMPACT_ACQUIRE_DIR%/apps"
if %ERRORLEVEL% GEQ 1 (
echo "Failed to run CMake!"
goto Error
)
:Error
endlocal

Then move into one of the generated folders and call ninja to invoke Ninja to do the actual build.

You should see something like this in your output window:

Using CMake To Generate Borland Makefiles

Apart from the Ninja based approach explained above the Borland/Embarcadero/RAD Studio compiler can also be used without modifying CMake as described above. In fact when modifying the CMake Embarcadero support file (Windows-Embarcadero.cmake) the approach explained here does no longer seem to work and building the example applications might fail with an error message

Generating Borland Makefiles is pretty straight forward and either be done using the CMake GUI or via the command line. A possible command line could look like this:

@echo off
set BUILD_DIR=%MVIMPACT_ACQUIRE_DIR%\..\mvIMPACT_Acquire_Build_Examples_Embarcadero_BorlandMakefiles_x86
if not exist %BUILD_DIR% (
mkdir %BUILD_DIR%
)
cd %BUILD_DIR%
cmake -Wno-dev -G "Borland Makefiles" %MVIMPACT_ACQUIRE_DIR%\apps
if %ERRORLEVEL% GEQ 1 (
echo "Failed to run CMake!"
goto Error
)

Then start a RAD Studio command prompt from the Start menu, or by opening a command prompt and executing rsvars.bat in the RAD Studio bin folder, move into the generated folder and call make to do the actual build.

You should see something like this in your output window:

Building And Linking The Traditional Way

Building

If for whatever reason you cannot or don't want to use CMake please think again! It is much easier! If the answer is still no follow the guidelines presented in this section!

Always specify ONE include path only! It should point to the top-level folder of the SDK installation. All include statements inside the SDK headers will assume this and will therefore include additional header files belonging to this SDK relative to this top-level directory. Typically therefore this include path will be "$(MVIMPACT_ACQUIRE_DIR)". Assume your installation looks like this:

<myInstallationPath>
|- DriverBase
|- mvDeviceManager
|- mvPropHandling
|- mvIMPACT_CPP
|- apps
| |- SingleCapture
| |- etc.
|- etc.

Then the one and only include path you should specify would be the path to "<myInstallationPath>". All files belonging to the interface are written in a way that they rely on this path and that no other path is needed.

For example using a Impact Acquire example application like SingleCapture in Microsoft Visual Studio in the standard installation environment, the include path should also be "$(MVIMPACT_ACQUIRE_DIR)" for the reasons mentioned above:

Figure 1: Visual Studio - Specifying the include path

For example the main C++ header file mvIMPACT_acquire.h will include the C headers like this:

#include <mvDeviceManager/Include/mvDeviceManager.h>

C

When building a plain C application the only header that needs to be included is mvDeviceManager.h. This header must be included in every file that uses functions belonging to the Impact Acquire 'C' interface.

Include the header into your project like this:

#include <mvDeviceManager/Include/mvDeviceManager.h>

This will work when the include path for the project has been set up as described above.

C++

For C++ applications usually the only header needed will be mvIMPACT_acquire.h and it shall be included like this:

#include <mvIMPACT_CPP/mvIMPACT_acquire.h>

This will work when the include path for the project has been set up as described above. The C++ interface is provided completely in source in a single inline wrapper file building a thin layer on top of the C interface. It (for C++ developers) is much easier to use then the conventional C layer.

Apart from that there are some other header files that provide additional features and functions when e.g. using GenICam compliant devices and drivers, functions to display images or features needed for very special applications. A full list of files belonging to this SDK can be found in the files section of this documentation.

Common

When installing the SDK on Windows via one of the MSI packages provided, an environment variable called MVIMPACT_ACQUIRE_DIR will be registered during the installation, on Linux this variable will also be generated during the installation. It points to the route path of the installation as discussed above.

Makefiles or project files then can specify the common include path by referencing the environment variable. When working with Visual Studio on Windows e.g. by opening the settings for the current project, clicking on the "C++" tab and then "additional include directories" and adding "$(MVIMPACT_ACQUIRE_DIR)" to the list of additional directories.

The advantage of this is that this project will compile even if it is copied to a different location.

Linking

No matter whether building C or C++ applications there is only one library that needs to be linked with the application: mvDeviceManager. No driver specific library must be linked directly as these will be dynamically loaded by the mvDeviceManager shared library internally.

Windows

When working with Microsoft Visual Studio or any other compiler that supports automatic linking, no library must be specified explicitly for linking, as a "#pragma" will perform this work for you.

Note
The Impact Acquire SDK is shipped with import libraries that are compatible with Microsoft Visual Studio as well as import libraries that can be used with Borland/Embarcadero like compilers. All these import libraries will be installed into the platform specific lib folders when installing a driver package with the SDK related modules. The Microsoft Visual Studio compatible import libraries use the name of the DLL they are meant for but instead of the .dll extension they use .lib. The import libraries for Embarcadero add a "b" to the original DLL name. So for the mvDeviceManager library the following files will be installed:
<myInstallationPath>
|- lib
| |- mvDeviceManager.lib // 32-bit Microsoft Visual Studio import library
| |- mvDeviceManagerb.lib // 32-bit Embarcadero import library (created with the corresponding 'implib'-tool)
| |- x64
| |- mvDeviceManager.lib // 64-bit Microsoft Visual Studio import library
| |- mvDeviceManagerb.lib // 64-bit Embarcadero import library (created with the corresponding 'mkexp'-tool)(Yes! The default file name would be 'mvDeviceManager.a' but for compatibility reasons it is 'mvDeviceManagerb.lib' as well!)
|- etc.

Direct linking of an export library however sometimes is not desired as this will result in an executable or a library, that can't be started/loaded when the linked library is not present on the target platform. Therefore sometimes dynamic loading is preferable.

To disable automatic linking your project- or makefile must define a macro NO_MV_DEVICE_MANAGER_AUTOLINK. Then however every function exported by the mvDeviceManager library and referenced in the application must be extracted from the library at runtime using the appropriate functions offered by the operating system (e.g. GetProcAddress or dlsym). The macro can either be defined directly in front of the include statement that would include the Impact Acquire API or inside the IDE project. Within Visual Studio this could be achieved like this:

Figure 2: Visual Studio - 'don't link import library automatically'
Note
When working with the C++ interface, this internally calls functions that might need to be resolved then as well. The reported linker errors for unresolved symbols will provide a good starting point when looking for a list of functions that need to be imported.

Another interesting approach might be the delay-load feature introduced with Microsoft Visual Studio 2003. Here even if the linked library (mvDeviceManager.dll in this case) is not present on the target platform the application will still be executable even when linked with the import library. However in order not to crash the application once the first function exported by the missing library is called some extra precaution will be necessary. Either you can try if

LoadLibrary( "mvDeviceManager.dll" );

succeeds before accessing functions and objects belonging to the Impact Acquire interface or you have to handle the exceptions generated by the delay load framework correctly, which is a bit more difficult and doesn't provide additional benefits.

Figure 3: Visual Studio - Delay loading a library

Specifying the link path

If you want to specify the link path manually, you should refer to folder of the Impact Acquire installation. Using a Impact Acquire example application like SingleCapture, the link path to the libraries will use the environment variable "$(MVIMPACT_ACQUIRE_DIR)". Because of that it doesn't matter where the example project is located. The libraries and header files will be found in any case:

Figure 4: Visual Studio - Specifying the library path for the linker

Running

To run an application that has been built using the Impact Acquire framework all user mode libraries belonging to the framework must be located in the library search path of the application using it. The minimal list of libraries that must be present when working with the Impact Acquire frame work consists of

  • mvDeviceManager-lib
  • mvPropHandling-lib
  • at least one device specific user mode driver(e.g. mvBlueFOX-lib, mvGenTLConsumer-lib, mvVirtualDevice-lib...)
  • at least one device specific kernel mode driver(if the driver comes with a kernel mode driver(mvVirtualDevice-lib for example doesn't))

A detailed list of the files and settings needed to deploy an Impact Acquire device driver can be found in the chapter Installation From Private Setup Routines.

Windows

Running 32-Bit Applications On A 64-Bit Version Of Windows

When an application that has been developed for 32-bit Windows shall be deployed on a 64-bit version of Windows some extra work might be necessary. On 64-bit Windows there can be both 32- and 64-bit user code but only 64-bit kernel code. To deploy an application on 64-bit Windows there are therefore 2 ways to go:

  • The complete application is rebuild for x64 using the 64-bit Impact Acquire driver framework. This is the recommended way as this is the only way to get all the benefits a 64-bit operating system has to offer
  • The original 32-bit application is deployed on the target system and the Impact Acquire driver framework is set up to use the 32-bit user mode layer on top of the 64-bit kernel modules. This sometimes is the only way to go e.g. if the application depends on code that has not yet been ported or can't be ported to 64-bit.

Even when the latter method is used no extra work is needed when using Impact Acquire as all the packages for 64-bit include the 32-bit user mode code as well.

Building The wxWidgets Applications

This section contains information about the wxWidgets based applications making use of the Impact Acquire API. There main purpose is to allow the initial configuration of devices and the SDK itself as well as providing a way to check various product features quickly. The applications can also be used to copy code snippets from or to cross-check certain effects encountered during product development.

ImpactControlCenter

Note
This section will NOT explain how the application works and what it can do, but how to re-compile it.

The source code of ImpactControlCenter (if installed) can be found under:

%INSTALLDIR%\apps\ImpactControlCenter\
Note
This section is just meant as a starting point. Balluff can't and won't give support on any questions on how to build and modify ImpactControlCenter. However, please feel free to modify the tool on your own OR submit a feature request to ballu.nosp@m.ff@b.nosp@m.alluf.nosp@m.f.de.

The application has been written using wxWidgets. At least version 3.x is required to build it. wxWidgets is a multi platform GUI framework. The source code (needed) can be downloaded from here: http://www.wxwidgets.org/.

After installing wxWidgets the library must be compiled.

The easiest way to build Impact Acquire applications that use wxWidgets is by using CMake as explained in detail in the section: Building The Examples And GUI Tools Using CMake. If for whatever reasons using CMake is not an option for you read on.

Windows

ImpactControlCenter is linked against the static versions of the wxWidgets libraries, thus at least these versions (debug and release, 32- and 64-bit) are required.

The Visual Studio project file for ImpactControlCenter uses an environment variable WX_WIDGETS_SOURCE_DIR as well as WX_WIDGETS_BUILD_DIR_X86 and WX_WIDGETS_BUILD_DIR_X64 to reference wxWidgets headers and libraries. The variable must be registered by the user and must point to the top level directory of the wxWidgets installation.

A Visual Studio 2013 solution file, that correctly handles the build dependencies will be installed as part of the source code. On Windows also a link will be created by the installer in the programs menu under Balluff/Impact Acquire/Sample Applications'. The link will always point to the native to version of the application that has been built with the native bit depth of your Windows installation so to the 64-bit on a 64-bit Windows.

You can easily create Makefiles or Visual Studio project files matching your compiler version using CMake. How this is done is explained here: Building And Linking Using CMake

Linux

How to build and link ImpactControlCenter on Linux is explained in the chapter "Quickstart" of the respective product manual. The source code of the application will be part of the installation package.