Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ae963b6
First step to magnova driver.
fredzo Dec 3, 2025
02b2a3f
Fixed sample rate and depth setting.
fredzo Dec 3, 2025
5caab4b
Added digital threshold support.
fredzo Dec 4, 2025
b3b86d0
Added sendWithAck() method for time sensitive commands.
fredzo Dec 5, 2025
e11f8dd
Cleanup
fredzo Dec 5, 2025
4b310c8
Fixed CI compilation.
fredzo Dec 5, 2025
b62105e
More CI build fix.
fredzo Dec 5, 2025
6ecb72a
Fixed acquisition
fredzo Dec 5, 2025
8433287
Finally fixed memory leak.
fredzo Dec 8, 2025
d872fc6
First step to AWG.
fredzo Dec 8, 2025
e4a31eb
Merge branch 'ngscopeclient:master' into magnova-driver
fredzo Dec 9, 2025
95c1e5e
Fixed digital channle threshold caching.
Dec 9, 2025
e38b3b6
Fixed rise/fall time commands.
Dec 9, 2025
e415888
Prevent pull trigger from asking level on digital sources.
Dec 9, 2025
aebf2f5
Fixed transport lock for converse and sendwithack.
Dec 9, 2025
b5b9a56
Fixed some caching issues.
Dec 10, 2025
28e303f
Fixed AWG channel color.
Dec 11, 2025
105ec87
Fixed low sample rate acquisition.
Dec 11, 2025
0119fd0
Code cleanup + added more trigger implementations.
fredzo Dec 12, 2025
1afbf86
First step to protocol error reporting.
fredzo Dec 12, 2025
cf16ab7
More triggering.
fredzo Dec 13, 2025
0878fec
Fixed triggering.
fredzo Dec 13, 2025
7d5d561
Fixed trigger
fredzo Dec 13, 2025
965f74d
Fixed logging and error reporting.
fredzo Dec 15, 2025
c2bb92a
Added more triggers.
fredzo Dec 15, 2025
84cb71d
Fixed comments
fredzo Dec 15, 2025
428d158
Merge branch 'ngscopeclient:master' into magnova-driver
fredzo Dec 15, 2025
7799929
Fixed potential deand locks.
fredzo Dec 16, 2025
d059fbe
Fixed Glitch Trigger.
fredzo Dec 17, 2025
deb9dbc
Fixed srate and mdepth value lists according to specifications provid…
fredzo Dec 18, 2025
ff81f7f
Added support for auto memory modes.
fredzo Dec 21, 2025
d0bd2d8
Fixed set sample rate for auto mode.
fredzo Dec 21, 2025
9693c67
Fixed max memory depth calculation.
fredzo Dec 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scopehal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ set(SCOPEHAL_SOURCES
KeysightDCA.cpp
LeCroyOscilloscope.cpp
LeCroyFWPOscilloscope.cpp
MagnovaOscilloscope.cpp
MockOscilloscope.cpp
MultiLaneBERT.cpp
NanoVNA.cpp
Expand Down
6 changes: 3 additions & 3 deletions scopehal/GlitchTrigger.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ class GlitchTrigger : public EdgeTrigger
protected:

///@brief Condition to look for
FilterParameter m_condition;
FilterParameter& m_condition;

///@brief Lower voltage level for glitch detector
FilterParameter m_lowerBound;
FilterParameter& m_lowerBound;

///@brief Upper voltage level for glitch detector
FilterParameter m_upperBound;
FilterParameter& m_upperBound;
};

#endif
Loading