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: 178889d9d365
Choose a base ref
...
head repository: ngscopeclient/scopehal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2d15f461da75
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Nov 22, 2020

  1. Copy the full SHA
    71d5519 View commit details
  2. Continued work on PCIe data link decoder. Now can decode flow control…

    … and ACK/NAK DLLPs. See #35.
    azonenberg committed Nov 22, 2020
    Copy the full SHA
    809d908 View commit details
  3. Copy the full SHA
    2d15f46 View commit details
Showing with 734 additions and 0 deletions.
  1. +1 −0 scopeprotocols/CMakeLists.txt
  2. +599 −0 scopeprotocols/PCIeDataLinkDecoder.cpp
  3. +132 −0 scopeprotocols/PCIeDataLinkDecoder.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
@@ -59,6 +59,7 @@ set(SCOPEPROTOCOLS_SOURCES
OneWireDecoder.cpp
OvershootMeasurement.cpp
ParallelBus.cpp
PCIeDataLinkDecoder.cpp
PCIeGen2LogicalDecoder.cpp
PeakHoldFilter.cpp
PeriodMeasurement.cpp
Loading