Skip to content
Snippets Groups Projects
  1. Mar 12, 2013
  2. Feb 13, 2013
  3. Feb 12, 2013
    • Marti Bolivar's avatar
      Fix up unused variable/value warnings. · 12574cf1
      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: default avatarMarti Bolivar <mbolivar@leaflabs.com>
      12574cf1
    • Marti Bolivar's avatar
      Resolve -Wreorder warnings. · efe43aa8
      Marti Bolivar authored
      
      Rearrange member initialization in constructors to silence GCC
      -Wreorder warnings (-Wreorder is enabled by -Wall).
      
      Signed-off-by: default avatarMarti Bolivar <mbolivar@leaflabs.com>
      efe43aa8
  4. Feb 06, 2013
  5. Nov 18, 2012
  6. Nov 17, 2012
  7. Nov 16, 2012
  8. Oct 11, 2012
  9. Oct 10, 2012
  10. Oct 09, 2012
  11. Oct 08, 2012
  12. Oct 06, 2012
  13. Sep 27, 2012
  14. Sep 06, 2012
  15. Sep 04, 2012
  16. Sep 03, 2012
  17. Sep 02, 2012
  18. Aug 08, 2012
  19. Jul 18, 2012
  20. Jun 16, 2012
    • jsiegle's avatar
      IntanThread now handles TTL inputs and generates its own timestamps. · a7a594c4
      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.
      a7a594c4
  21. May 12, 2012
  22. Apr 21, 2012
  23. Apr 19, 2012
  24. Apr 18, 2012
  25. Apr 17, 2012
  26. Feb 19, 2012
  27. Feb 13, 2012
    • jsiegle's avatar
      Acquisition automatically stops if data source is lost · ac72523a
      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.
      ac72523a
  28. Feb 11, 2012
    • jsiegle's avatar
      Significant changes to DataThread classes. · 8d0136c5
      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.
      8d0136c5
    • Josh Siegle's avatar
      First commit of source files. · de713d4b
      Josh Siegle authored
      de713d4b
Loading