-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not detecting NeoVi Fire 2 Device #50
Comments
What platform are you running this on? For Windows, you may need our device driver package. For Linux, you may need more permissions (try running with |
I'm currently running on a windows system. From the driver package, which file am I supposed to install? |
Ah my bad, those are manually installable drivers. This package has an automated installer you can use. |
I downloaded the driver and the device is still not being detected. Currently, I have neoVI explorer open and connected to my neoVI fire 2, however, when I try running my program, it's not detecting my device. When building, some files aren't fully built but the program still compiles at the end. Could this be the issue? Thanks. |
I think there might be something wrong with my build files. When I run
My current directory looks like: +build My main.cpp is where I include the code:
Outermost CMakeLists.txt contains:
I feel like when I build, there are some files/libraries that are not being included in the build process. Any tips or assistance will be greatly appreciated! |
I had the same problem with Fire 3 and Win 11 x64. I needed to install Npcap and modify CMakeLists.txt to set LIBICSNEO_NPCAP_INCLUDE_DIR variable and rebuild the libicsneo again. Then there is alternate path in PCAPDLL::PCAPDLL used for opening wpcap.dll which was buggy (find details in another issue) but after I fix that bugs the device was finally found. |
My program which successfully compiles, can't detect my NeoVi Fire 2 device. When running cmake, I get this:
Include paths
Loaded extensions:
-- Build type: Debug
-- Not generating API documentation
fatal: No names found, cannot describe anything.
-- Detected git snapshot version: unknown
-- Not building libftdi1++
-- Not building python bindings
-- ftdi_eeprom build is disabled
-- libConfuse not found, won't build ftdi_eeprom
-- NOT building unit test
-- Configuring done
-- Generating done
-- Build files have been written to: ...
It successfully builds, however, when I try to run this code, it always say 0 devices found:
`std::vector<std::shared_ptricsneo::Device> devices = icsneo::FindAllDevices();
Is this due to the build file or is there something else that I need to do when connecting the device to my laptop?
Thanks.
The text was updated successfully, but these errors were encountered: