![]() |
EDT PDV SDK Documentation 6.2.0
|
Engineering Design Team (EDT), Inc. https://edt.com
SPDX-License-Identifier: BSD-3-Clause Copyright (C) 2016 Engineering Design Team, Inc.
Revised: Oct. 2023
By default the PDV package is installed to:
C:\EDT\pdv
/opt/EDTpdv
This directory will be referred to as the "installation directory."
This README file contains quick start information, changes and additions for your EDT PCI Digital Vision (PDV) product, such as our VisionLink F1, F4, and CLS. For complete documentation and software updates, go to https://edt.com and navigate to the specific product page.
Also see the other README.xxx files in the installation directory for information on specific tasks, and CHANGELOG.md for changes between versions.
The most useful examples/diagnostics are take
, simple_take
, and pciload
. You can run any of these programs with the -h flag for description and usage.
Example source code is provided in the /examples/
directory. See the README file in that directory for instructions on how to get started with the examples.
To test only the frame grabber interface, you can run the board in simulator mode without a camera. The method differs depending on the board in use. With EDT VisionLink boards, use the "phantom" channel 2 which produces a 16-bit gray ramp internally. Access channel 2 by using the -c 2
flag in applications, for example:
./initcam -c 2 -f camera_config/<file>
...where <file>
is one of the .cfg files in the camera config directory. Then run "take" to capture an image and optionally save the image to a file.
./take -u 0 -c 2
Open Device Manager and expand the "PCI Devices" entry to see which EDT PDV devices you may have installed in a given system.
Most PDV utilities are command line applications. Open PowerShell or Command Prompt and navigate to the installation directory to launch these applications. For example, to launch pciload
to list all installed PDV boards in the system:
./bin/pciload.exe -p
The PDV package provides a Camera Link serial interface library for the VisionLink frame grabbers, clseredt.dll
, and installs it to the location defined by the Camera Link specification. Typically, for a 64-bit system, this will be C:\Program Files\CameraLink\Serial\
. See your camera's documentation for information on any camera-specific control GUI that supports this interface.
Most PDV utilities are command line applications. Open your favorite terminal and navigate to the installation directory to find the binary applications. For example, to launch pciload
to list all installed PDV boards in the system:
./pciload -p
If the "pciutils" package is installed, run lspci -d 123d:
to list any EDT PCI devices installed in your system.
If the "kmod" package is installed, run lsmod | grep edt_pci
to check if the edt_pci_pdv
kernel module is currently loaded.
The PDV kernel module (edt_pci_pdv
) is compiled during installation of the PDV package with the help of Dynamic Kernel Module Support (DKMS). The DKMS tooling should automatically sign the module upon install.
However, it is possible your kernel may fail to load the module due to UEFI Secure Boot being enabled, kernel signature enforcement being enabled, the DKMS signing certificate is not yet trusted by your system, or some combination thereof. EDT PCI devices will be inaccessible until the kernel module can be properly loaded.
There are two options to correct this issue:
install.log
from the installation directory.install_dkms_make.log
from the installation directory or from /var/lib/dkms/edt_pci_pdv/<package_version>/make.log
EDT frame grabber firmware may be updated occasionally. These firmware files are provided as separate add-on packages.
To compare the current FPGA firmware running on the board with any firmware files you may have additionally installed to the installation directory, navigate to the PDV directory in a command window (terminal), and run:
./pciload verify
The program will output the dates, revision numbers and file id of the FPGA firmware. If they match, then there is no need for a field upgrade. If they differ, upgrade the firmware by running:
./pciload update
Note that the FPGA only reloads firmware during power-up, so after loading new firmware with pciload, it won't be active until the system has power cycled. This requires shutting down, waiting a few seconds, then powering back on. Rebooting is not sufficient; PCI devices are often not powered off during a reboot.
pciload has several options that can be used in other than the default case (e.g. -u 1 to update the second of 2 boards in the system). For a list of all options, run:
./pciload -h
IMPORTANT: The features and functionality of an FPGA-based EDT product are dependent on the firmware variant and version. For example, Camera Link medium or full mode acquisition may not be supported in standard firmware, but alternate firmware EDT provides may implement this. For details, refer to the user guide for your product.
EDT VisionLink Remote Camera eXtender (RCX) firmware updates are occasionally provided as well. The process is similar to process described above, except that rcxload is used. To upgrade a VisionLink RCX module, put the module into blink code 3-3 (see RCX Users Guide for instructions), make sure the cable is connected to channel 0 of a VisionLink F1 or F4 frame grabber (it doesn't have to be connected to a camera), then run:
./rcxload -u 0 flash/rcx/rgb11.rcx
After the update and assuming no errors, switch the module into the appropriate blink code for its intended use. Note that with this version, the blink codes may have changed; see the blink code table in the current version of the RCX Users Guide, available on the EDT website, https://edt.com .
(Note: Linux versions don't have the .exe
extension on executables.)