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: 18fd1a3ed86a
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 49650923286b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 27, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4965092 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 scopeprotocols/SpectrogramFilter.cpp
6 changes: 3 additions & 3 deletions scopeprotocols/SpectrogramFilter.cpp
Original file line number Diff line number Diff line change
@@ -202,10 +202,10 @@ void SpectrogramFilter::Refresh()
double fmax = bin_hz * fftlen;

Unit hz(Unit::UNIT_HZ);
LogDebug("SpectrogramFilter: %zu input points, %zu %zu-point FFTs\n", inlen, nblocks, fftlen);
LogTrace("SpectrogramFilter: %zu input points, %zu %zu-point FFTs\n", inlen, nblocks, fftlen);
LogIndenter li;
LogDebug("FFT range is DC to %s\n", hz.PrettyPrint(fmax).c_str());
LogDebug("%s per bin\n", hz.PrettyPrint(bin_hz).c_str());
LogTrace("FFT range is DC to %s\n", hz.PrettyPrint(fmax).c_str());
LogTrace("%s per bin\n", hz.PrettyPrint(bin_hz).c_str());

//Create the output
size_t nouts = fftlen/2 + 1;