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: 474ad03b63f6
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8a2882efbaaf
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Apr 25, 2021

  1. Initial work on MIL-STD-1553 decode. Decodes command word only, can't…

    … do data. no protocol analyzer view. See #286.
    azonenberg committed Apr 25, 2021
    Copy the full SHA
    8a2882e View commit details
Showing with 656 additions and 0 deletions.
  1. +1 −0 scopeprotocols/CMakeLists.txt
  2. +554 −0 scopeprotocols/MilStd1553Decoder.cpp
  3. +99 −0 scopeprotocols/MilStd1553Decoder.h
  4. +1 −0 scopeprotocols/scopeprotocols.cpp
  5. +1 −0 scopeprotocols/scopeprotocols.h
1 change: 1 addition & 0 deletions scopeprotocols/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -64,6 +64,7 @@ set(SCOPEPROTOCOLS_SOURCES
JtagDecoder.cpp
MagnitudeFilter.cpp
MDIODecoder.cpp
MilStd1553Decoder.cpp
MovingAverageFilter.cpp
MultiplyFilter.cpp
OFDMDemodulator.cpp
Loading