Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 79945fbe0556
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 71e9c1513ab4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 27, 2021

  1. Copy the full SHA
    71e9c15 View commit details
Showing with 3 additions and 0 deletions.
  1. +3 −0 scopeprotocols/SpectrogramFilter.cpp
3 changes: 3 additions & 0 deletions scopeprotocols/SpectrogramFilter.cpp
Original file line number Diff line number Diff line change
@@ -87,6 +87,9 @@ SpectrogramFilter::SpectrogramFilter(const string& color)
m_parameters[m_windowName].SetIntVal(FFTFilter::WINDOW_BLACKMAN_HARRIS);

m_parameters[m_fftLengthName] = FilterParameter(FilterParameter::TYPE_ENUM, Unit(Unit::UNIT_SAMPLEDEPTH));
m_parameters[m_fftLengthName].AddEnumValue("64", 64);
m_parameters[m_fftLengthName].AddEnumValue("128", 128);
m_parameters[m_fftLengthName].AddEnumValue("256", 256);
m_parameters[m_fftLengthName].AddEnumValue("512", 512);
m_parameters[m_fftLengthName].AddEnumValue("1024", 1024);
m_parameters[m_fftLengthName].AddEnumValue("2048", 2048);