Skip to content

Commit a971ee3

Browse files
committed
Fix arduino output not updating sometimes
1 parent 8017f33 commit a971ee3

3 files changed

Lines changed: 14 additions & 0 deletions

File tree

Builds/MacOSX/Plugins/EvntTrigAvg/EvntTrigAvg.xcodeproj/project.pbxproj

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
objectVersion = 48;
77
objects = {
88

9+
/* Begin PBXBuildFile section */
10+
274EC05B1FC3203100242F92 /* EvntTrigAvg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 274EC0511FC30EFE00242F92 /* EvntTrigAvg.cpp */; };
11+
274EC05C1FC3203400242F92 /* EvntTrigAvgCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 274EC0521FC30EFE00242F92 /* EvntTrigAvgCanvas.cpp */; };
12+
274EC05D1FC3203800242F92 /* EvntTrigAvgEditor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 274EC0501FC30EFE00242F92 /* EvntTrigAvgEditor.cpp */; };
13+
274EC05E1FC3203B00242F92 /* OpenEphysLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 274EC0551FC30EFE00242F92 /* OpenEphysLib.cpp */; };
14+
/* End PBXBuildFile section */
15+
916
/* Begin PBXFileReference section */
1017
274EC0331FC30DB200242F92 /* EvntTrigAvg.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EvntTrigAvg.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
1118
274EC0361FC30DB200242F92 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
@@ -147,6 +154,10 @@
147154
isa = PBXSourcesBuildPhase;
148155
buildActionMask = 2147483647;
149156
files = (
157+
274EC05B1FC3203100242F92 /* EvntTrigAvg.cpp in Sources */,
158+
274EC05D1FC3203800242F92 /* EvntTrigAvgEditor.cpp in Sources */,
159+
274EC05C1FC3203400242F92 /* EvntTrigAvgCanvas.cpp in Sources */,
160+
274EC05E1FC3203B00242F92 /* OpenEphysLib.cpp in Sources */,
150161
);
151162
runOnlyForDeploymentPostprocessing = 0;
152163
};

Builds/MacOSX/open-ephys.xcodeproj/xcshareddata/xcschemes/open-ephys (App).xcscheme

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
buildConfiguration = "Debug"
4646
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4747
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48+
language = ""
4849
shouldUseLaunchSchemeArgsEnv = "YES">
4950
<Testables>
5051
</Testables>
@@ -64,6 +65,7 @@
6465
buildConfiguration = "Debug"
6566
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
6667
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
68+
language = ""
6769
launchStyle = "0"
6870
useCustomWorkingDirectory = "NO"
6971
ignoresPersistentStateOnLaunch = "NO"

Source/Plugins/ArduinoOutput/ArduinoOutput.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ ArduinoOutput::ArduinoOutput()
3131
: GenericProcessor ("Arduino Output")
3232
, outputChannel (13)
3333
, inputChannel (-1)
34+
, gateChannel (-1)
3435
, state (true)
3536
, acquisitionIsActive (false)
3637
, deviceSelected (false)

0 commit comments

Comments
 (0)