diff options
author | jcorgan | 2008-12-29 01:35:48 +0000 |
---|---|---|
committer | jcorgan | 2008-12-29 01:35:48 +0000 |
commit | 50b2df2ed93de8dbba3185714a3e07e7470e1229 (patch) | |
tree | 2eb77cbebb878fc6f7ee8ebed3b5c546b5e330bd /usrp2/host/lib/usrp2.cc | |
parent | 31daef30bc197cb86c7310db386d0b5835c03422 (diff) | |
download | gnuradio-50b2df2ed93de8dbba3185714a3e07e7470e1229.tar.gz gnuradio-50b2df2ed93de8dbba3185714a3e07e7470e1229.tar.bz2 gnuradio-50b2df2ed93de8dbba3185714a3e07e7470e1229.zip |
Implements USRP2 poke32() command.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10176 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2/host/lib/usrp2.cc')
-rw-r--r-- | usrp2/host/lib/usrp2.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usrp2/host/lib/usrp2.cc b/usrp2/host/lib/usrp2.cc index 37d8aaa33..2a7fe5963 100644 --- a/usrp2/host/lib/usrp2.cc +++ b/usrp2/host/lib/usrp2.cc @@ -401,6 +401,12 @@ namespace usrp2 { return d_impl->peek32(addr, words); } + bool + usrp2::poke32(uint32_t addr, const std::vector<uint32_t> &data) + { + return d_impl->poke32(addr, data); + } + } // namespace usrp2 |