Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | dissectors: Fix inclusion of glib.h and Python version | Martin Braun | 2021-09-28 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | Previously, we were doing this: ```cpp extern "C" { } ``` This is not how glib.h is supposed to be included, according to their documentation. It turns out that it happened to work for a long time, and lots of projects include glib.h that way, and the glib devs are trying to accommodate for those cases. How nice of them! However, on Fedora 34, we have a version of glib which does not have a workaround patch, so we include glib.h the it should be. The second issue was that a build script required the existence of a `python` executable, which is not always available. A `python3` executable can be assumed, since that's a dependency for UHD, too. | ||||
* | tools: Rfnoc dissectors are now built and named based on CHDR width | Cristina Fuentes | 2020-12-01 | 2 | -157/+168 |
| | |||||
* | tools: Update rfnoc dissector to support multiple CHDR widths. | Cristina Fuentes | 2020-12-01 | 1 | -11/+26 |
| | |||||
* | dissector: Swap chdr_packet for chdr_packet_writer | Samuel O'Brien | 2020-07-16 | 2 | -2/+2 |
| | | | | | | | A recent commit changed the name of chdr_packet in uhd. This commit accounts for this change and makes the dissector compile again. Signed-off-by: Samuel O'Brien <sam.obrien@ni.com> | ||||
* | tools: rfnoc dissector: Add EOB and EOV into tree | Martin Braun | 2019-11-26 | 1 | -4/+13 |
| | | | | This will display EOB and EOV flags in the Wireshark dissector window. | ||||
* | tools: rfnoc dissector requires c++14 | Alex Williams | 2019-11-26 | 1 | -1/+4 |
| | | | | Mark the requirement in the CMakeLists.txt. | ||||
* | rfnoc: Unify endianness of transports | Alex Williams | 2019-11-26 | 1 | -35/+40 |
| | | | | | Ethernet now uses the same serialization of the RFNoC stream as all the other transports. | ||||
* | tools: Update dissectors for Wireshark major version 3, new CHDR | Alex Williams | 2019-11-26 | 10 | -0/+1374 |
Dissectors may now be incompatible with earlier versions. Fixes ZPU dissector. |