diff options
Diffstat (limited to 'usrp2/host/lib/usrp2_impl.h')
-rw-r--r-- | usrp2/host/lib/usrp2_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usrp2/host/lib/usrp2_impl.h b/usrp2/host/lib/usrp2_impl.h index 0a6b97b86..0400a108b 100644 --- a/usrp2/host/lib/usrp2_impl.h +++ b/usrp2/host/lib/usrp2_impl.h @@ -27,6 +27,8 @@ #include "ring.h" #include <string> +#define MAX_SUBPKT_LEN 252 + namespace usrp2 { class eth_buffer; @@ -175,6 +177,7 @@ namespace usrp2 { bool burn_mac_addr(const std::string &new_addr); bool sync_to_pps(); std::vector<uint32_t> peek32(uint32_t addr, uint32_t words); + bool poke32(uint32_t addr, const std::vector<uint32_t> &data); }; } // namespace usrp2 |