nelgau has quit [Remote host closed the connection]
_whitenotifier has joined #scopehal
<_whitenotifier>
[scopehal-apps] sbabic44 edited issue #295: Issue with FFTS for Windows with MSYS2 mingw64 (Keysight 3000T) - https://git.io/JInZu
<_whitenotifier>
[scopehal] Codysseus edited a comment on issue #361: USB Decoder does not function correctly. - https://git.io/JIlf6
<_whitenotifier>
[scopehal] azonenberg pushed 5 commits to master [+2/-0/±8] https://git.io/JIlg6
<_whitenotifier>
[scopehal] azonenberg 80f7139 - FindZeroCrossings: fixed bug in interpolation causing 1 sample of offset
<_whitenotifier>
[scopehal] azonenberg 6f32e8c - ClockRecoveryFilter: removed offset we don't need now that FindZeroCrossings is indexing from the correct sample
<_whitenotifier>
[scopehal] bvernoux opened pull request #373: Add next_pow2() function - https://git.io/JI4uS
<_whitenotifier>
[scopehal] bvernoux opened pull request #374: Compute next highest power of 2 function - https://git.io/JI4u5
<_whitenotifier>
[scopehal] bvernoux opened pull request #375: Fix Demo (TestWaveformSource.cpp) crash issue with MSYS2 mingw64 Release build - https://git.io/JI4zS
<_whitenotifier>
[scopehal] bvernoux opened pull request #376: Fix DeEmbedFilter.cpp crash issue with MSYS2 mingw64 Release build - https://git.io/JI4gV
<_whitenotifier>
[scopehal] bvernoux opened pull request #377: Fix FFTFilter.cpp crash issue with MSYS2 mingw64 Release build - https://git.io/JI42T
<_whitenotifier>
[scopehal] bvernoux opened pull request #378: Fix JitterSpectrumFilter.cpp crash issue with MSYS2 mingw64 Release b… - https://git.io/JI42z
<_whitenotifier>
[scopehal-apps] bvernoux edited a comment on issue #295: Issue with FFTS for Windows with MSYS2 mingw64 (Keysight 3000T) - https://git.io/JIW5x
<_whitenotifier>
[scopehal-apps] bvernoux edited a comment on issue #295: Issue with FFTS for Windows with MSYS2 mingw64 (Keysight 3000T) - https://git.io/JIW5x
<_whitenotifier>
[scopehal] azonenberg pushed 2 commits to master [+0/-0/±2] https://git.io/JI4oB
<_whitenotifier>
[scopehal] bvernoux 1a9dfed - Add next_pow2() function
<_whitenotifier>
[scopehal] azonenberg c94b565 - Merge pull request #373 from bvernoux/patch-2 Add next_pow2() function
<_whitenotifier>
[scopehal] azonenberg closed pull request #374: Compute next highest power of 2 function - https://git.io/JI4u5
<_whitenotifier>
[scopehal] azonenberg pushed 2 commits to master [+0/-0/±2] https://git.io/JI4oy
<_whitenotifier>
[scopehal] bvernoux 25a912f - Compute next highest power of 2 function Compute next highest power of 2 to fix issues when using code (in different parts): const size_t npoints = pow(2, ceil(log2(depth))); (see scopehal\TestWaveformSource.cpp => TestWaveformSource::DegradeSerialData()...) The original code (pow(2, ceil(log2())) has some border effects when built with MSYS2 mingw64 "Release" mode as it
<_whitenotifier>
does not compute correctly the highest power of 2 for example with parameter 100000 it was returning 131071 (instead of 131072) which crashed ffts. This implementation fix issue https://github.com/azonenberg/scopehal-apps/issues/295 The function next_pow2() shall replace pow(2, ceil(log2())) in following code: scopehal\TestWaveformSource.cpp Line 282: //const size_t npoints = pow(2, ceil(log2(depth)));
<_whitenotifier>
scopeprotocols\DeEmbedFilter.cpp Line 230: const size_t npoints = pow(2, ceil(log2(npoints_raw))); scopeprotocols\FFTFilter.cpp Line 179: const size_t npoints = pow(2, ceil(log2(npoints_raw))); scopeprotocols\JitterSpectrumFilter.cpp Line 195: const size_t npoints = pow(2, ceil(log2(npoints_raw)));
<_whitenotifier>
[scopehal] azonenberg 45d156e - Merge pull request #374 from bvernoux/patch-1 Compute next highest power of 2 function
<_whitenotifier>
[scopehal] azonenberg pushed 2 commits to master [+0/-0/±2] https://git.io/JI4ob
<_whitenotifier>
[scopehal] bvernoux a0080c7 - Fix Demo crash issue with MSYS2 mingw64 Compute next highest power of 2 to fix issues when using code (in different parts): const size_t npoints = pow(2, ceil(log2(depth))); (see scopehal\TestWaveformSource.cpp => TestWaveformSource::DegradeSerialData()...) The original code (pow(2, ceil(log2())) has some border effects when built with MSYS2 mingw64 "Release" mode as it does
<_whitenotifier>
not compute correctly the highest power of 2 for example with parameter 100000 it was returning 131071 (instead of 131072) which crashed ffts. This implementation fix issue azonenberg/scopehal-apps#295
<_whitenotifier>
[scopehal] azonenberg pushed 2 commits to master [+0/-0/±2] https://git.io/JI4KJ
<_whitenotifier>
[scopehal] bvernoux f0bce25 - Fix DeEmbedFilter.cpp crash issue with MSYS2 mingw64 Release build Compute next highest power of 2 to fix issues when using code (in different parts): const size_t npoints = pow(2, ceil(log2(npoints_raw))); The original code (pow(2, ceil(log2())) has some border effects when built with MSYS2 mingw64 "Release" mode as it does not compute correctly the highest power of 2 for
<_whitenotifier>
example with parameter 100000 it was returning 131071 (instead of 131072) which crashed ffts. This implementation fix issue azonenberg/scopehal-apps#295
<_whitenotifier>
[scopehal] azonenberg f7e50d9 - Merge pull request #376 from bvernoux/patch-4 Fix DeEmbedFilter.cpp crash issue with MSYS2 mingw64 Release build
<_whitenotifier>
[scopehal] azonenberg pushed 2 commits to master [+0/-0/±2] https://git.io/JI4Kq
<_whitenotifier>
[scopehal] bvernoux bd2c7b5 - Fix FFTFilter.cpp crash issue with MSYS2 mingw64 Release build Compute next highest power of 2 to fix issues when using code: const size_t npoints = pow(2, ceil(log2(npoints_raw))); The original code (pow(2, ceil(log2())) has some border effects when built with MSYS2 mingw64 "Release" mode as it does not compute correctly the highest power of 2 for example with parameter
<_whitenotifier>
100000 it was returning 131071 (instead of 131072) which crashed ffts. This implementation fix issue azonenberg/scopehal-apps#295
<_whitenotifier>
[scopehal] azonenberg 314a932 - Merge pull request #377 from bvernoux/patch-5 Fix FFTFilter.cpp crash issue with MSYS2 mingw64 Release build
<_whitenotifier>
[scopehal] azonenberg pushed 2 commits to master [+0/-0/±2] https://git.io/JI4KZ
<_whitenotifier>
[scopehal] bvernoux 2f97f67 - Fix JitterSpectrumFilter.cpp crash issue with MSYS2 mingw64 Release build Compute next highest power of 2 to fix issues when using code: const size_t npoints = next_pow2(npoints_raw); The original code (pow(2, ceil(log2())) has some border effects when built with MSYS2 mingw64 "Release" mode as it does not compute correctly the highest power of 2 for example with parameter
<_whitenotifier>
100000 it was returning 131071 (instead of 131072) which crashed ffts. This implementation fix issue azonenberg/scopehal-apps#295
<_whitenotifier>
[scopehal] azonenberg 200e775 - Merge pull request #378 from bvernoux/patch-6 Fix JitterSpectrumFilter.cpp crash issue with MSYS2 mingw64 Release b…
<_whitenotifier>
[scopehal-apps] bvernoux commented on issue #295: Issue with FFTS for Windows with MSYS2 mingw64 (Keysight 3000T) - https://git.io/JI4DM
<_whitenotifier>
[scopehal] mytreax forked the repository - https://git.io/JI4yw
<_whitenotifier>
[scopehal] azonenberg opened issue #379: JitterSpectrumFilter allows voltage waveforms to be passed as input, and crashes with divide-by-zero - https://git.io/JI49H
<_whitenotifier>
[scopehal] azonenberg labeled issue #379: JitterSpectrumFilter allows voltage waveforms to be passed as input, and crashes with divide-by-zero - https://git.io/JI49H
<_whitenotifier>
[scopehal] azonenberg opened issue #380: Waterfall filter allows analog channel to be passed as input and crashes - https://git.io/JI49d
<_whitenotifier>
[scopehal] azonenberg labeled issue #380: Waterfall filter allows analog channel to be passed as input and crashes - https://git.io/JI49d
<_whitenotifier>
[scopehal] bvernoux opened issue #381: Rigol MSO5000 horizontal scale (timebase) and vertical scale are wrong compared to scope - https://git.io/JI47A
<_whitenotifier>
[scopehal] bvernoux edited issue #381: Rigol MSO5000: Horizontal scale (timebase) and Vertical scale are wrong - https://git.io/JI47A
<_whitenotifier>
[scopehal] bvernoux edited a comment on issue #15: Add Picoscope scope driver(s) - https://git.io/JI45K
<_whitenotifier>
[scopehal] azonenberg pushed 1 commit to master [+0/-0/±2] https://git.io/JIB4O
<_whitenotifier>
[scopehal] azonenberg b011d45 - JitterSpectrumFilter: only accept inputs whose Y axis is in time units. Fixes #379.
<_whitenotifier>
[scopehal] azonenberg closed issue #379: JitterSpectrumFilter allows voltage waveforms to be passed as input, and crashes with divide-by-zero - https://git.io/JI49H
<_whitenotifier>
[scopehal-apps] azonenberg opened issue #296: Waterfall filter allows analog channel to be passed as input and crashes - https://git.io/JIB4G
<_whitenotifier>
[scopehal-apps] azonenberg closed issue #295: Issue with FFTS for Windows with MSYS2 mingw64 (Keysight 3000T) - https://git.io/JInZu
<_whitenotifier>
[scopehal-apps] azonenberg edited issue #296: WaveformArea::RefreshContextMenu() does not properly refresh filters in "RF" category - https://git.io/JIB4G
<_whitenotifier>
[scopehal-apps] azonenberg pushed 1 commit to master [+0/-0/±2] https://git.io/JIB44