diff options
author | Jacob Gilbert <jacob.gilbert@protonmail.com> | 2021-07-06 05:34:06 -0600 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-07-19 06:44:24 -0400 |
commit | 4d3eab2a40379cd6073eaccee86ac10b442382eb (patch) | |
tree | f90ca5995c49ac6300e1f67fd69a7f407ad8b178 /gnuradio-runtime/lib | |
parent | ec0e2bbf1c923baf35fc2969c7739844a6764058 (diff) |
pdu: adding pdu_to_stream block
Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
Diffstat (limited to 'gnuradio-runtime/lib')
-rw-r--r-- | gnuradio-runtime/lib/pdu.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/pdu.cc b/gnuradio-runtime/lib/pdu.cc index f860bf395d..7b75fbac1a 100644 --- a/gnuradio-runtime/lib/pdu.cc +++ b/gnuradio-runtime/lib/pdu.cc @@ -22,8 +22,24 @@ const pmt::pmt_t pdu_num() static const pmt::pmt_t val = pmt::mp("pdu_num"); return val; } +const pmt::pmt_t tx_eob() +{ + static const pmt::pmt_t val = pmt::mp("tx_eob"); + return val; +} +const pmt::pmt_t tx_time() +{ + static const pmt::pmt_t val = pmt::mp("tx_time"); + return val; +} +const pmt::pmt_t tx_sob() +{ + static const pmt::pmt_t val = pmt::mp("tx_sob"); + return val; +} } /* namespace metadata_keys */ + namespace msgport_names { const pmt::pmt_t bpdu() |