- Mar 12, 2013
-
-
jsiegle authored
-
- Feb 13, 2013
-
-
aacuevas authored
-
- Feb 12, 2013
-
-
Marti Bolivar authored
Generic changes: - Genuinely unused variables (-Wunused-variable): delete them. Sometimes add a comment if the variable is for an extension of the code that isn't done yet. - Variables that became unused due to commented-out code (-Wunused-variable): comment out their definitions. Dirty, but that's because commenting out code instead of deleting it is dirty. Many of these are due to commented-out printlines that should have been log messages that only get emitted at high verbosity level. Specific changes: - SpikeObject.cpp (-Wunused-value): move initialization of loop variable into first for loop clause to silence the warning. Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
Marti Bolivar authored
Rearrange member initialization in constructors to silence GCC -Wreorder warnings (-Wreorder is enabled by -Wall). Signed-off-by:
Marti Bolivar <mbolivar@leaflabs.com>
-
- Feb 06, 2013
-
-
aacuevas authored
-
- Nov 18, 2012
-
-
Josh Siegle authored
-
- Nov 17, 2012
-
-
Josh Siegle authored
-
Josh Siegle authored
-
- Nov 16, 2012
-
-
jsiegle authored
-
- Oct 11, 2012
-
-
unknown authored
-
- Oct 10, 2012
-
-
unknown authored
-
- Oct 09, 2012
-
-
Josh Siegle authored
-
- Oct 08, 2012
-
-
jsiegle authored
-
- Oct 06, 2012
-
-
Josh Siegle authored
-
- Sep 27, 2012
-
-
Josh Siegle authored
-
- Sep 06, 2012
-
-
Josh Siegle authored
-
- Sep 04, 2012
-
-
Josh Siegle authored
-
- Sep 03, 2012
-
-
Josh Siegle authored
-
- Sep 02, 2012
-
-
Josh Siegle authored
-
- Aug 08, 2012
-
-
Josh Siegle authored
-
Josh Siegle authored
-
- Jul 18, 2012
-
-
Josh Siegle authored
-
- Jun 16, 2012
-
-
jsiegle authored
The IntanThread can report TTL events on its 6 input channels. This was tested with an Arduino; input detection is fast and reliable. The IntanThread also generates its own timestamps, allowing the software to move toward a framework in which timestamps come from input sources, rather than from the RecordNode. Finally, an ArduinoOutput module was added, which allows the software to communicate with an Arduino via serial output.
-
- May 12, 2012
-
-
jsiegle authored
-
- Apr 21, 2012
-
-
jsiegle authored
-
- Apr 19, 2012
-
-
jsiegle authored
-
- Apr 18, 2012
-
-
jsiegle authored
-
- Apr 17, 2012
-
-
Josh Siegle authored
-
- Feb 19, 2012
-
-
jsiegle authored
-
- Feb 13, 2012
-
-
jsiegle authored
Changes to the DataThread, SourceNode, and UIComponent classes allow data threads to disable callbacks if they are no longer receiving input. So far this has only been tested with the Intan Board, but it works really well. Unplugging the board in the middle of acquisition allows the thread to exit, and callbacks to be disabled, without any seg faults.
-
- Feb 11, 2012
-
-
jsiegle authored
DataThreads (e.g. IntanThread, FileReaderThread, FPGAThread) are now created at the same time as the source node, rather than at the start of data acquisition. New methods for starting/stopping individual threads are required, although only the appropriate methods for the IntanThread have been written. Another important change is that the SourceNode now periodically checks for an appropriate input source every few seconds while acquisition is not in progress. It's the responsibility of the individual DataThreads to notify the SourceNode if their input has disappears. In the case of the IntanThread, this involves attempting to change the baud rate. If an error code returns, it informs the SourceNode that the input is missing. This, in turn, informs the FilterViewport that the source is no longer enabled, thus deactivating that particular signal chain.
-
Josh Siegle authored
-