[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 97/148: removed the usrp2_bytesex header si
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 97/148: removed the usrp2_bytesex header since it only imported from gruel |
Date: |
Mon, 15 Aug 2016 00:47:28 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
nwest pushed a commit to annotated tag old_usrp_devel_udp
in repository gnuradio.
commit ddced4abc5ab451167116445ebc96df0b882aa33
Author: Josh Blum <address@hidden>
Date: Fri Dec 18 14:33:31 2009 -0800
removed the usrp2_bytesex header since it only imported from gruel
---
usrp2/firmware/include/usrp2_eth_packet.h | 1 -
usrp2/host/include/usrp2/usrp2.h | 1 -
usrp2/host/lib/Makefile.am | 1 -
usrp2/host/lib/eth_ctrl_transport.cc | 1 +
usrp2/host/lib/find.cc | 1 +
usrp2/host/lib/usrp2_bytesex.h | 19 -------------------
usrp2/host/lib/usrp2_impl.cc | 2 +-
usrp2/host/lib/usrp2_impl.h | 1 -
8 files changed, 3 insertions(+), 24 deletions(-)
diff --git a/usrp2/firmware/include/usrp2_eth_packet.h
b/usrp2/firmware/include/usrp2_eth_packet.h
index 80ee373..6c8ef12 100644
--- a/usrp2/firmware/include/usrp2_eth_packet.h
+++ b/usrp2/firmware/include/usrp2_eth_packet.h
@@ -20,7 +20,6 @@
#define INCLUDED_USRP2_ETH_PACKET_H
#include "usrp2_cdefs.h"
-#include "usrp2_bytesex.h"
#include "usrp2_mac_addr.h"
#include "usrp2_mimo_config.h"
diff --git a/usrp2/host/include/usrp2/usrp2.h b/usrp2/host/include/usrp2/usrp2.h
index 949e457..5246c79 100644
--- a/usrp2/host/include/usrp2/usrp2.h
+++ b/usrp2/host/include/usrp2/usrp2.h
@@ -87,7 +87,6 @@ namespace usrp2 {
class usrp2 : boost::noncopyable
{
public:
- static const unsigned int MAX_CHAN = 30;
/*!
* Shared pointer to this class
diff --git a/usrp2/host/lib/Makefile.am b/usrp2/host/lib/Makefile.am
index 2b6b08c..d186d6c 100644
--- a/usrp2/host/lib/Makefile.am
+++ b/usrp2/host/lib/Makefile.am
@@ -65,5 +65,4 @@ noinst_HEADERS = \
open_usrp2_socket.h \
pktfilter.h \
transport.h \
- usrp2_bytesex.h \
usrp2_impl.h
diff --git a/usrp2/host/lib/eth_ctrl_transport.cc
b/usrp2/host/lib/eth_ctrl_transport.cc
index e7e7386..acc979b 100644
--- a/usrp2/host/lib/eth_ctrl_transport.cc
+++ b/usrp2/host/lib/eth_ctrl_transport.cc
@@ -17,6 +17,7 @@
*/
#include "eth_ctrl_transport.h"
+#include <gruel/inet.h>
usrp2::eth_ctrl_transport::eth_ctrl_transport(const std::string &ifc,
u2_mac_addr_t mac, bool target)
: transport("ethernet control"), d_mac(mac){
diff --git a/usrp2/host/lib/find.cc b/usrp2/host/lib/find.cc
index 6e08dd4..f41e2d6 100644
--- a/usrp2/host/lib/find.cc
+++ b/usrp2/host/lib/find.cc
@@ -28,6 +28,7 @@
#include <stdexcept>
#include <cstdio>
#include <gruel/thread.h>
+#include <gruel/inet.h>
#include "eth_ctrl_transport.h"
#define FIND_DEBUG false
diff --git a/usrp2/host/lib/usrp2_bytesex.h b/usrp2/host/lib/usrp2_bytesex.h
deleted file mode 100644
index 4f63d07..0000000
--- a/usrp2/host/lib/usrp2_bytesex.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* -*- c++ -*- */
-/*
- * Copyright 2008 Free Software Foundation, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <gruel/inet.h>
diff --git a/usrp2/host/lib/usrp2_impl.cc b/usrp2/host/lib/usrp2_impl.cc
index 3e6a510..20f5096 100644
--- a/usrp2/host/lib/usrp2_impl.cc
+++ b/usrp2/host/lib/usrp2_impl.cc
@@ -694,7 +694,7 @@ namespace usrp2 {
//clear the burst flags and count
hdr_frag.header &= ~(VRTH_START_OF_BURST | VRTH_END_OF_BURST |
VRTH_PKT_CNT_MASK);
- //set the packet count
+ //set the packet count //FIXME packet count should be per stream id
hdr_frag.header |= ((d_tx_pkt_cnt++ << VRTH_PKT_CNT_SHIFT) &
VRTH_PKT_CNT_MASK);
//start of burst can only be set on the first fragment
if (hdr->header & VRTH_START_OF_BURST and fn == 0)
diff --git a/usrp2/host/lib/usrp2_impl.h b/usrp2/host/lib/usrp2_impl.h
index 1540f64..8e5c532 100644
--- a/usrp2/host/lib/usrp2_impl.h
+++ b/usrp2/host/lib/usrp2_impl.h
@@ -22,7 +22,6 @@
#include <usrp2/usrp2.h>
#include <usrp2/data_handler.h>
#include <usrp2_eth_packet.h>
-#include <gruel/thread.h>
#include <boost/scoped_ptr.hpp>
#include <boost/thread.hpp>
#include "control.h"
- [Commit-gnuradio] [gnuradio] 125/148: try a width that works..., (continued)
- [Commit-gnuradio] [gnuradio] 125/148: try a width that works..., git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 80/148: working vrt tx, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 85/148: also release ethernet frames here, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 88/148: revered dumb change to vrt expanded header, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 84/148: Replaced rx metadata with vrt expanded header. Removed timestamp from tx metadata, changes will be made for vrt., git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 93/148: using vrt::expanded_header::unparse in usrp2 impl tx raw, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 94/148: Replaced the need for code word tables by setting the header/trailer lengths in the switch body jump table, just like in the unparser switch body., git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 72/148: Logic for the start/end of burst bits, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 82/148: Merge branch 'merge_usrp2' into wip/usrp2, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 91/148: Added time spec to the start streaming command. One can do a start streaming at by specifiying a time spec, or leave the parameter off for stream now mode., git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 97/148: removed the usrp2_bytesex header since it only imported from gruel,
git <=
- [Commit-gnuradio] [gnuradio] 100/148: Made some gruel changes to get it compiling on this system., git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 101/148: flattened usrp2 hierarchy `, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 87/148: Removed references to channel numbers in usrp2 and gr usrp2. Removed the sample handler and replaced it with the vrt packet handler. Fixed the build systems to require vrt for usrp., git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 117/148: typo fix, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 111/148: Merge branch 'master' of address@hidden:jblum into wip/usrp2, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 104/148: barebones udp support. Compiles, but untested., git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 130/148: should fix the endless packet bug, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 106/148: proper time sync to pps, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 119/148: better debug pins, git, 2016/08/14
- [Commit-gnuradio] [gnuradio] 114/148: Merge branch 'wip/usrp2' of http://gnuradio.org/git/matt into wip/usrp2, git, 2016/08/14