aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2/codec_ctrl.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-06-04 12:16:09 -0700
committerJosh Blum <josh@joshknows.com>2010-06-04 12:16:09 -0700
commitf2b560d5f8d19bf6bbd86802e03f061ecede78ec (patch)
tree4e0d99411b2b1ebee38ef7bbe2fb26be87b39e05 /host/lib/usrp/usrp2/codec_ctrl.cpp
parentdbc65d928362b983d8f6113319db87841a5b159d (diff)
downloaduhd-f2b560d5f8d19bf6bbd86802e03f061ecede78ec.tar.gz
uhd-f2b560d5f8d19bf6bbd86802e03f061ecede78ec.tar.bz2
uhd-f2b560d5f8d19bf6bbd86802e03f061ecede78ec.zip
Prepend usrp2 onto the helper classes in usrp2 impl to avoid symbol conflicts.
Diffstat (limited to 'host/lib/usrp/usrp2/codec_ctrl.cpp')
-rw-r--r--host/lib/usrp/usrp2/codec_ctrl.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/host/lib/usrp/usrp2/codec_ctrl.cpp b/host/lib/usrp/usrp2/codec_ctrl.cpp
index d698216ba..abd840027 100644
--- a/host/lib/usrp/usrp2/codec_ctrl.cpp
+++ b/host/lib/usrp/usrp2/codec_ctrl.cpp
@@ -29,9 +29,9 @@ using namespace uhd;
/*!
* A usrp2 codec control specific to the ad9777 ic.
*/
-class codec_ctrl_impl : public codec_ctrl{
+class usrp2_codec_ctrl_impl : public usrp2_codec_ctrl{
public:
- codec_ctrl_impl(usrp2_iface::sptr iface){
+ usrp2_codec_ctrl_impl(usrp2_iface::sptr iface){
_iface = iface;
//setup the ad9777 dac
@@ -60,7 +60,7 @@ public:
_iface->poke32(FR_MISC_CTRL_ADC, FRF_MISC_CTRL_ADC_ON);
}
- ~codec_ctrl_impl(void){
+ ~usrp2_codec_ctrl_impl(void){
//power-down dac
_ad9777_regs.power_down_mode = 1;
this->send_ad9777_reg(0);
@@ -86,6 +86,6 @@ private:
/***********************************************************************
* Public make function for the usrp2 codec control
**********************************************************************/
-codec_ctrl::sptr codec_ctrl::make(usrp2_iface::sptr iface){
- return sptr(new codec_ctrl_impl(iface));
+usrp2_codec_ctrl::sptr usrp2_codec_ctrl::make(usrp2_iface::sptr iface){
+ return sptr(new usrp2_codec_ctrl_impl(iface));
}