Skip to content
Snippets Groups Projects
  1. Mar 21, 2013
  2. Mar 20, 2013
  3. Mar 12, 2013
  4. 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
  5. Feb 06, 2013
  6. Dec 27, 2012
  7. Nov 26, 2012
  8. Nov 20, 2012
  9. Nov 12, 2012
  10. Nov 11, 2012
  11. Oct 06, 2012
  12. Sep 20, 2012
  13. Jul 31, 2012
  14. Jul 08, 2012
  15. Jul 07, 2012
  16. Jun 17, 2012
  17. 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
  18. May 21, 2012
  19. May 20, 2012
  20. May 18, 2012
  21. Apr 21, 2012
  22. Apr 17, 2012
  23. Apr 06, 2012
  24. Mar 20, 2012
  25. Mar 15, 2012
  26. Mar 12, 2012
  27. Mar 10, 2012
  28. Mar 02, 2012
  29. Mar 01, 2012
    • jsiegle's avatar
      Major refactoring. · a66d703f
      jsiegle authored
      Three important changes:
      - The FilterList is now the ProcessorList
      - The FilterViewport is now the EditorViewport
      - Any classes that need to access important UI objects have become subclasses
        of the "AccessClass". Such objects automatically obtain pointers from
        the UIComponent and register the MessageCenter as an ActionListener. This
        will make it much easier to allocate pointers to objects.
      a66d703f
    • jsiegle's avatar
      Renamed FilterList and FilterViewport · e06db7e1
      jsiegle authored
      e06db7e1
Loading