diff options
Diffstat (limited to 'host/lib')
| -rw-r--r-- | host/lib/usrp/cores/rx_dsp_core_200.cpp | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/host/lib/usrp/cores/rx_dsp_core_200.cpp b/host/lib/usrp/cores/rx_dsp_core_200.cpp index d0afda769..a89405039 100644 --- a/host/lib/usrp/cores/rx_dsp_core_200.cpp +++ b/host/lib/usrp/cores/rx_dsp_core_200.cpp @@ -19,6 +19,7 @@  #include <uhd/types/dict.hpp>  #include <uhd/exception.hpp>  #include <uhd/utils/msg.hpp> +#include <uhd/utils/safe_call.hpp>  #include <uhd/utils/algorithm.hpp>  #include <boost/assign/list_of.hpp>  #include <boost/thread/thread.hpp> //thread sleep @@ -76,6 +77,15 @@ public:          this->clear();      } +    ~rx_dsp_core_200_impl(void) +    { +        UHD_SAFE_CALL +        ( +            //shutdown any possible streaming +            this->clear(); +        ) +    } +      void clear(void){          _iface->poke32(REG_RX_CTRL_NCHANNELS, 0); //also reset          _iface->poke32(REG_RX_CTRL_VRT_HDR, 0  | 
