GNU Radio's BLUETOOTH Package
multi_LAP_impl.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2013 Christopher D. Kilgour
4 * Copyright 2008, 2009 Dominic Spill, Michael Ossmann
5 * Copyright 2007 Dominic Spill
6 * Copyright 2005, 2006 Free Software Foundation, Inc.
7 *
8 * This is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * This software is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this software; see the file COPYING. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street,
21 * Boston, MA 02110-1301, USA.
22 */
23
24#ifndef INCLUDED_BLUETOOTH_GR_BLUETOOTH_MULTI_LAP_IMPL_H
25#define INCLUDED_BLUETOOTH_GR_BLUETOOTH_MULTI_LAP_IMPL_H
26
27#include "bluetooth/multi_LAP.h"
28
29namespace gr {
30 namespace bluetooth {
31
32 class multi_LAP_impl : virtual public multi_LAP
33 {
34 private:
35 // Nothing to declare in this block.
36
37 public:
38 multi_LAP_impl(double sample_rate, double center_freq, double squelch_threshold);
40
41 // Where all the action really happens
42 int work(int noutput_items,
43 gr_vector_const_void_star &input_items,
44 gr_vector_void_star &output_items);
45 };
46
47 } // namespace bluetooth
48} // namespace gr
49
50#endif /* INCLUDED_BLUETOOTH_GR_BLUETOOTH_MULTI_LAP_IMPL_H */
51
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
multi_LAP_impl(double sample_rate, double center_freq, double squelch_threshold)
Sniff Bluetooth packets.
Definition multi_LAP.h:41
Definition multi_block.h:34
Definition multi_block.h:33