Skip to content
Snippets Groups Projects
Commit 2aac5868 authored by Josh Siegle's avatar Josh Siegle
Browse files

Created general rules file for both Opal Kelly and FTDI

parent 26d8754d
Branches
Tags
No related merge requests found
# udev rules file for all Opal Kelly VID matches.
# udev rules file for the Open Ephys GUI
# This file allows udev to change the mode to 666 (all read/write)
# for any Opal Kelly VID.
# for Opal Kelly FPGAs and the Intan Development Board
#
# For FedoraCore 5 and similar:
# Change permissions for Opal Kelly FPGAs
SUBSYSTEM=="usb_device", SYSFS{idVendor}=="151f", MODE="0666"
# Change permissions for the Intan Development Board:
SUBSYSTEM=="usb_device", SYSFS{idVendor}=="0403", SYSFS{idProduct}=="0610", MODE:="0666"
# For FedoraCore 7 and similar:
# Change permissions for Opal Kelly FPGAs
SUBSYSTEM=="usb", ATTRS{idVendor}=="151f", MODE="0666"
# Change permissions for the Intan Development Board:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="0610", MODE:="0666"
......@@ -25,7 +25,7 @@
FPGAThread::FPGAThread(SourceNode* sn) : DataThread(sn),
isTransmitting(false),
numchannels(32),
numchannels(16),
deviceFound(false)
{
......@@ -33,8 +33,6 @@ FPGAThread::FPGAThread(SourceNode* sn) : DataThread(sn),
const char* bitfilename = "./pipetest.bit";
printf("---- Opal Kelly ---- PipeTest Application v1.0 ----\n");
if (!okFrontPanelDLL_LoadLib(NULL)) {
printf("FrontPanel DLL could not be loaded.\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment