diff options
author | jcorgan | 2008-12-20 20:54:52 +0000 |
---|---|---|
committer | jcorgan | 2008-12-20 20:54:52 +0000 |
commit | 66dca69648e7fa8fbdd2973f77224ad34198d9a5 (patch) | |
tree | d5c67453d04d7f727da5dcac7f427a85ea086983 /usrp/host/lib/inband | |
parent | 8d3704c5af29ef15e3a4490049d2fd6d917bc6d8 (diff) | |
download | gnuradio-66dca69648e7fa8fbdd2973f77224ad34198d9a5.tar.gz gnuradio-66dca69648e7fa8fbdd2973f77224ad34198d9a5.tar.bz2 gnuradio-66dca69648e7fa8fbdd2973f77224ad34198d9a5.zip |
Move mblock library include files into separate library. Updates to usrp in-band code to accommodate. Tested with out-of-tree mblock application builds. Trunk passes distcheck.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10144 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp/host/lib/inband')
-rw-r--r-- | usrp/host/lib/inband/qa_inband_usrp_server.cc | 10 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_inband_usb_packet.h | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_rx.cc | 2 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_rx.h | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_rx_stub.cc | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_rx_stub.h | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_server.cc | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_server.h | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_tx.cc | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_tx.h | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_tx_stub.cc | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_tx_stub.h | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_usb_interface.cc | 4 | ||||
-rw-r--r-- | usrp/host/lib/inband/usrp_usb_interface.h | 2 |
14 files changed, 29 insertions, 29 deletions
diff --git a/usrp/host/lib/inband/qa_inband_usrp_server.cc b/usrp/host/lib/inband/qa_inband_usrp_server.cc index e457e8d64..c66418392 100644 --- a/usrp/host/lib/inband/qa_inband_usrp_server.cc +++ b/usrp/host/lib/inband/qa_inband_usrp_server.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -28,10 +28,10 @@ #include <cppunit/TestAssert.h> #include <stdio.h> #include <usrp_server.h> -#include <mb_mblock.h> -#include <mb_runtime.h> -#include <mb_protocol_class.h> -#include <mb_class_registry.h> +#include <mblock/mblock.h> +#include <mblock/runtime.h> +#include <mblock/protocol_class.h> +#include <mblock/class_registry.h> #include <vector> #include <iostream> #include <pmt.h> diff --git a/usrp/host/lib/inband/usrp_inband_usb_packet.h b/usrp/host/lib/inband/usrp_inband_usb_packet.h index 8f59d1b65..6f1a3feb3 100644 --- a/usrp/host/lib/inband/usrp_inband_usb_packet.h +++ b/usrp/host/lib/inband/usrp_inband_usb_packet.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -23,7 +23,7 @@ #define INCLUDED_USRP_INBAND_USB_PACKET_H_ #include <usrp_bytesex.h> -#include <mb_mblock.h> +#include <mblock/mblock.h> #include <pmt.h> #include <iostream> diff --git a/usrp/host/lib/inband/usrp_rx.cc b/usrp/host/lib/inband/usrp_rx.cc index b1f9f7b9b..45d41bed7 100644 --- a/usrp/host/lib/inband/usrp_rx.cc +++ b/usrp/host/lib/inband/usrp_rx.cc @@ -29,7 +29,7 @@ #include <iostream> #include <vector> #include <usb.h> -#include <mb_class_registry.h> +#include <mblock/class_registry.h> #include <usrp_inband_usb_packet.h> #include <fpga_regs_common.h> #include <stdio.h> diff --git a/usrp/host/lib/inband/usrp_rx.h b/usrp/host/lib/inband/usrp_rx.h index 10104bd66..9496b27d9 100644 --- a/usrp/host/lib/inband/usrp_rx.h +++ b/usrp/host/lib/inband/usrp_rx.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -21,7 +21,7 @@ #ifndef INCLUDED_USRP_RX_H #define INCLUDED_USRP_RX_H -#include <mb_mblock.h> +#include <mblock/mblock.h> #include <fstream> class usrp_standard_rx; diff --git a/usrp/host/lib/inband/usrp_rx_stub.cc b/usrp/host/lib/inband/usrp_rx_stub.cc index 8be709533..e5c454d24 100644 --- a/usrp/host/lib/inband/usrp_rx_stub.cc +++ b/usrp/host/lib/inband/usrp_rx_stub.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -28,7 +28,7 @@ #include <iostream> #include <vector> #include <usb.h> -#include <mb_class_registry.h> +#include <mblock/class_registry.h> #include <usrp_inband_usb_packet.h> #include <fpga_regs_common.h> #include "usrp_standard.h" diff --git a/usrp/host/lib/inband/usrp_rx_stub.h b/usrp/host/lib/inband/usrp_rx_stub.h index 9cf308a99..238b4568f 100644 --- a/usrp/host/lib/inband/usrp_rx_stub.h +++ b/usrp/host/lib/inband/usrp_rx_stub.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -21,7 +21,7 @@ #ifndef INCLUDED_USRP_RX_STUB_H #define INCLUDED_USRP_RX_STUB_H -#include <mb_mblock.h> +#include <mblock/mblock.h> #include <vector> #include "usrp_standard.h" #include <ui_nco.h> diff --git a/usrp/host/lib/inband/usrp_server.cc b/usrp/host/lib/inband/usrp_server.cc index 9f92e2afe..ac2636308 100644 --- a/usrp/host/lib/inband/usrp_server.cc +++ b/usrp/host/lib/inband/usrp_server.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -25,7 +25,7 @@ #include <usrp_server.h> #include <iostream> #include <usrp_inband_usb_packet.h> -#include <mb_class_registry.h> +#include <mblock/class_registry.h> #include <vector> #include <usrp_usb_interface.h> #include <string.h> diff --git a/usrp/host/lib/inband/usrp_server.h b/usrp/host/lib/inband/usrp_server.h index 09c82faac..dd1825d57 100644 --- a/usrp/host/lib/inband/usrp_server.h +++ b/usrp/host/lib/inband/usrp_server.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -21,7 +21,7 @@ #ifndef INCLUDED_USRP_SERVER_H #define INCLUDED_USRP_SERVER_H -#include <mb_mblock.h> +#include <mblock/mblock.h> #include <vector> #include <queue> #include <fstream> diff --git a/usrp/host/lib/inband/usrp_tx.cc b/usrp/host/lib/inband/usrp_tx.cc index 5c0a8c307..cf7976bca 100644 --- a/usrp/host/lib/inband/usrp_tx.cc +++ b/usrp/host/lib/inband/usrp_tx.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -26,7 +26,7 @@ #include <usrp_tx.h> #include <iostream> #include <usb.h> -#include <mb_class_registry.h> +#include <mblock/class_registry.h> #include <usrp_inband_usb_packet.h> #include <fpga_regs_common.h> #include <usrp_standard.h> diff --git a/usrp/host/lib/inband/usrp_tx.h b/usrp/host/lib/inband/usrp_tx.h index 546a26afc..823d5ceaa 100644 --- a/usrp/host/lib/inband/usrp_tx.h +++ b/usrp/host/lib/inband/usrp_tx.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -21,7 +21,7 @@ #ifndef INCLUDED_USRP_TX_H #define INCLUDED_USRP_TX_H -#include <mb_mblock.h> +#include <mblock/mblock.h> #include <fstream> class usrp_standard_tx; diff --git a/usrp/host/lib/inband/usrp_tx_stub.cc b/usrp/host/lib/inband/usrp_tx_stub.cc index 8d47f8152..c78b1a7b8 100644 --- a/usrp/host/lib/inband/usrp_tx_stub.cc +++ b/usrp/host/lib/inband/usrp_tx_stub.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -26,7 +26,7 @@ #include <iostream> #include <vector> #include <usb.h> -#include <mb_class_registry.h> +#include <mblock/class_registry.h> #include <usrp_tx_stub.h> #include <usrp_inband_usb_packet.h> #include <fpga_regs_common.h> diff --git a/usrp/host/lib/inband/usrp_tx_stub.h b/usrp/host/lib/inband/usrp_tx_stub.h index 52294beec..b81037ad7 100644 --- a/usrp/host/lib/inband/usrp_tx_stub.h +++ b/usrp/host/lib/inband/usrp_tx_stub.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -21,7 +21,7 @@ #ifndef INCLUDED_USRP_TX_STUB_H #define INCLUDED_USRP_TX_STUB_H -#include <mb_mblock.h> +#include <mblock/mblock.h> #include <vector> #include "usrp_standard.h" #include <fstream> diff --git a/usrp/host/lib/inband/usrp_usb_interface.cc b/usrp/host/lib/inband/usrp_usb_interface.cc index 51b6d4646..c69eb0b00 100644 --- a/usrp/host/lib/inband/usrp_usb_interface.cc +++ b/usrp/host/lib/inband/usrp_usb_interface.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2008 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -28,7 +28,7 @@ #include <iostream> #include <vector> #include <usb.h> -#include <mb_class_registry.h> +#include <mblock/class_registry.h> #include <usrp_inband_usb_packet.h> #include <fpga_regs_common.h> #include "usrp_rx.h" diff --git a/usrp/host/lib/inband/usrp_usb_interface.h b/usrp/host/lib/inband/usrp_usb_interface.h index 6c2c15768..5151f155c 100644 --- a/usrp/host/lib/inband/usrp_usb_interface.h +++ b/usrp/host/lib/inband/usrp_usb_interface.h @@ -21,7 +21,7 @@ #ifndef INCLUDED_USRP_USB_INTERFACE_H #define INCLUDED_USRP_USB_INTERFACE_H -#include <mb_mblock.h> +#include <mblock/mblock.h> #include <vector> #include "usrp_standard.h" |