vimpostor / pmt

pmt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PMT Library

https://wiki.gnuradio.org/index.php/Polymorphic_Types_(PMTs)

PMT Objects represent a serializable container of data that can be passed across various interfaced. In GNU Radio, these are used to carry data on stream tags or through message passing, and could be used to pass data to external consumers of GNU Radio. This PMT library restructures the API beyond what has previously been included in the GNU Radio codebase to more closely align with the functionality and usability in the C++ Standard Template Library, and uses std::variant for the underlying data storage and serialization

Dependencies

  • meson
  • ninja
  • C++20

Installation

PMTlib uses meson and ninja to manage the build process, which can be installed via pip and your package manager

pip install meson
cd pmt
meson setup build --buildtype=debugoptimized --prefix=[PREFIX] --libdir=lib
cd build
ninja
ninja install

About

pmt

License:GNU Lesser General Public License v3.0


Languages

Language:C++ 80.1%Language:C 9.6%Language:Meson 5.1%Language:Python 4.3%Language:CMake 0.9%