Skip to content
Snippets Groups Projects
  1. Aug 04, 2014
  2. Jul 14, 2014
  3. Aug 24, 2013
  4. Aug 12, 2013
    • jsiegle's avatar
      Massive overhaul of PhaseDetector · c2bea4de
      jsiegle authored
      The user can now select up to 5 different phase detectors within the same
      module, each triggered on one of four different phases. Each can have
      its own unique input channel, output channel, and gate. This is a vast
      improvement over what we were dealing with beforehand.
      c2bea4de
  5. Aug 08, 2013
  6. Aug 07, 2013
  7. Jun 19, 2013
  8. Jun 16, 2013
  9. May 09, 2013
    • interpretivechaos's avatar
      Loading Parameters and altering Parameter Buttons based on active channels · 3a2ace62
      interpretivechaos authored
      Allows parameters to be set from saved XML and changes the
      parameterEditor buttons (currently for discrete parameters only) to
      reflect which parameters are currently used by selected and
      non-selected channels. This fixes a problem where the buttons would
      always show what the last press was rather than the current values for
      the active channels (e.g. If you changed the parameters on Channel 2,
      and then switched to select only Channel 1, the GUI would incorrectly
      indicate that the settings for Channel 2 were active). Additionally,
      allows the user to see what parameter values are used for channels not
      currently selected.
      3a2ace62
  10. Apr 26, 2013
  11. Apr 25, 2013
  12. Apr 24, 2013
  13. Apr 23, 2013
  14. Apr 22, 2013
  15. Apr 05, 2013
    • jsiegle's avatar
      Run astyle to make code format more consistent · ea8c1c90
      jsiegle authored
      To run this in the future, install astyle (sudo apt-get install astyle),
      then enter the following from the top-level project directory:
      
      astyle --options=astyle.options --recursive "./Source/*.cpp" "./Source/*.h"
      
      This will convert tabs to 4 spaces and ensure that brackets are on
      their own lines.
      ea8c1c90
  16. Mar 21, 2013
    • jsiegle's avatar
      Change copyright year to 2013 · e36119a1
      jsiegle authored
      Use the following command to update the copyright year in all files,
      starting in the Source/ directory:
      
      find . -type f -print0 | xargs -0
         sed -i 's/Copyright (C) 2012/Copyright (C) 2013/g'
      
      Works like a charm!
      e36119a1
    • jsiegle's avatar
      Updated JUCE library · 637baf17
      jsiegle authored
      637baf17
  17. 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
      8b27dbe9
  18. Dec 13, 2012
  19. Nov 19, 2012
  20. Nov 17, 2012
  21. Nov 13, 2012
  22. Nov 12, 2012
Loading