Skip to content
Snippets Groups Projects
Commit ec916fdc authored by unknown's avatar unknown
Browse files

Modified FPGA bitfile path on windows

parent 27bfb5a6
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,13 @@ FPGAThread::FPGAThread(SourceNode* sn) : DataThread(sn),
//const char* bitfilename = "./pipetest.bit";
#ifdef _WIN32
const char* bitfilename = "pipetest.bit";
const char* libname = NULL;
#else
const char* bitfilename = "/Users/Josh/Programming/open-ephys/GUI/Resources/DLLs/pipetest.bit";
const char* libname = "/Users/Josh/Programming/open-ephys/GUI/Resources/DLLs/libokFrontPanel.dylib";
#endif
if (!okFrontPanelDLL_LoadLib(libname)) {
printf("FrontPanel DLL could not be loaded.\n");
......
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment