summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/pdu.h
blob: 5a54c9afe0ce30df7e72f326c18879be31e9baae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* -*- c++ -*- */
/*
 * Copyright 2013 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef INCLUDED_BLOCKS_PDU_H
#define INCLUDED_BLOCKS_PDU_H

#include <gnuradio/blocks/api.h>
#include <gnuradio/gr_complex.h>
#include <pmt/pmt.h>


namespace gr {
namespace blocks {
namespace pdu {
enum vector_type { byte_t, float_t, complex_t };

BLOCKS_API const pmt::pmt_t pdu_port_id();
BLOCKS_API size_t itemsize(vector_type type);
BLOCKS_API bool type_matches(vector_type type, pmt::pmt_t v);
BLOCKS_API pmt::pmt_t make_pdu_vector(vector_type type, const uint8_t* buf, size_t items);
BLOCKS_API vector_type type_from_pmt(pmt::pmt_t vector);

} /* namespace pdu */
} /* namespace blocks */
} /* namespace gr */

#endif /* INCLUDED_BLOCKS_PDU_H */