Skip to content

Commit 536374c

Browse files
author
AJ Keller
committed
Add support for linux woo
1 parent b32fd20 commit 536374c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

OpenBCI_GUI/GanglionSync.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,4 +674,4 @@ class OpenBCI_Ganglion {
674674
controlPanel.open();
675675
output("Ganglion now in bootloader mode! Enjoy!");
676676
}
677-
};
677+
};

OpenBCI_GUI/OpenBCI_GUI.pde

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//
66
// Created: Chip Audette, Oct 2013 - May 2014
77
// Modified: Conor Russomanno & Joel Murphy, August 2014 - Dec 2014
8-
// Modified (v2.0): Conor Russomanno & Joel Murphy, June 2016
8+
// Modified (v2.0): Conor Russomanno & Joel Murphy (AJ Keller helped too), June 2016
99
//
1010
// Requires gwoptics graphing library for processing. Built on V0.5.0
1111
// http://www.gwoptics.org/processing/gwoptics_p5lib/
@@ -401,7 +401,7 @@ void hubStart() {
401401
nodeHubby = launch(dataPath("Ganglion Hub.exe"));
402402
} else if (isLinux()) {
403403
println("OpenBCI_GUI: hubStart: OS Detected: Linux");
404-
nodeHubby = launch(dataPath("Ganglion Hub"));
404+
nodeHubby = exec(dataPath("Ganglion Hub"));
405405
} else {
406406
println("OpenBCI_GUI: hubStart: OS Detected: Mac");
407407
nodeHubby = launch(dataPath("Ganglion Hub.app"));
@@ -1026,4 +1026,4 @@ PVector getWindowLocation(String renderer) {
10261026
}
10271027
return l;
10281028
}
1029-
//END OF CODE FOR FIXING WEIRD EXIT CRASH ISSUE -- 7/27/16 ===========================
1029+
//END OF CODE FOR FIXING WEIRD EXIT CRASH ISSUE -- 7/27/16 ===========================

0 commit comments

Comments
 (0)