diff options
Diffstat (limited to 'gnuradio-runtime/lib/pdu.cc')
-rw-r--r-- | gnuradio-runtime/lib/pdu.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/pdu.cc b/gnuradio-runtime/lib/pdu.cc index 79a6de6c79..0533d9d3a8 100644 --- a/gnuradio-runtime/lib/pdu.cc +++ b/gnuradio-runtime/lib/pdu.cc @@ -27,6 +27,11 @@ const pmt::pmt_t rx_time() static const pmt::pmt_t val = pmt::mp("rx_time"); return val; } +const pmt::pmt_t sample_rate() +{ + static const pmt::pmt_t val = pmt::mp("sample_rate"); + return val; +} const pmt::pmt_t sys_time() { static const pmt::pmt_t val = pmt::mp("sys_time"); |