USRP Hardware Driver and USRP Manual  Version: 003.008.002-0-ge9d11b35
UHD and USRP Manual
wb_iface.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2011-2013 Ettus Research LLC
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
16 //
17 
18 #ifndef INCLUDED_UHD_TYPES_WB_IFACE_HPP
19 #define INCLUDED_UHD_TYPES_WB_IFACE_HPP
20 
21 #include <uhd/config.hpp>
22 #include <boost/cstdint.hpp>
23 #include <boost/shared_ptr.hpp>
24 
25 namespace uhd
26 {
27 
29 {
30 public:
31  typedef boost::shared_ptr<wb_iface> sptr;
32  typedef boost::uint32_t wb_addr_type;
33 
34  virtual ~wb_iface(void);
35 
41  virtual void poke64(const wb_addr_type addr, const boost::uint64_t data);
42 
48  virtual boost::uint64_t peek64(const wb_addr_type addr);
49 
55  virtual void poke32(const wb_addr_type addr, const boost::uint32_t data);
56 
62  virtual boost::uint32_t peek32(const wb_addr_type addr);
63 
69  virtual void poke16(const wb_addr_type addr, const boost::uint16_t data);
70 
76  virtual boost::uint16_t peek16(const wb_addr_type addr);
77 
78 };
79 
80 } //namespace uhd
81 
82 #endif /* INCLUDED_UHD_TYPES_WB_IFACE_HPP */
boost::shared_ptr< wb_iface > sptr
Definition: wb_iface.hpp:31
boost::uint32_t wb_addr_type
Definition: wb_iface.hpp:32
#define UHD_API
Definition: config.hpp:79
Definition: convert.hpp:28
Definition: wb_iface.hpp:28