blob: 094a83581e3473b5499bd26baba204e55b7b65bd (
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
35
36
37
38
39
40
41
42
|
/* -*- c++ -*- */
/*
* Copyright 2006,2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_GR_MAP_BB_IMPL_H
#define INCLUDED_GR_MAP_BB_IMPL_H
#include <gnuradio/digital/map_bb.h>
#include <gnuradio/thread/thread.h>
namespace gr {
namespace digital {
class map_bb_impl : public map_bb
{
private:
static constexpr size_t s_map_size = 0x100;
unsigned char d_map[s_map_size];
mutable gr::thread::mutex d_mutex;
public:
map_bb_impl(const std::vector<int>& map);
~map_bb_impl();
void set_map(const std::vector<int>& map);
std::vector<int> map() const;
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
};
} /* namespace digital */
} /* namespace gr */
#endif /* INCLUDED_GR_MAP_BB_IMPL_H */
|