aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorMichael West <michael.west@ettus.com>2013-11-01 17:15:05 -0700
committerMichael West <michael.west@ettus.com>2013-11-01 17:15:05 -0700
commit265e94473130ffefc95d4eb67e8d46ce50982be4 (patch)
tree557bd8220d0fbd3b40e25ac11ab92af3870f884a /host
parent57ceb52cc60d9f7da8a40547798d4e1df26e3334 (diff)
downloaduhd-265e94473130ffefc95d4eb67e8d46ce50982be4.tar.gz
uhd-265e94473130ffefc95d4eb67e8d46ce50982be4.tar.bz2
uhd-265e94473130ffefc95d4eb67e8d46ce50982be4.zip
Restored use of accessor to initialize value in the constructor.
Diffstat (limited to 'host')
-rw-r--r--host/lib/usrp/cores/tx_dsp_core_3000.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/cores/tx_dsp_core_3000.cpp b/host/lib/usrp/cores/tx_dsp_core_3000.cpp
index 6fde70c5f..93c8702bc 100644
--- a/host/lib/usrp/cores/tx_dsp_core_3000.cpp
+++ b/host/lib/usrp/cores/tx_dsp_core_3000.cpp
@@ -51,7 +51,7 @@ public:
//init to something so update method has reasonable defaults
_scaling_adjustment = 1.0;
_dsp_extra_scaling = 1.0;
- _tick_rate = 1.0;
+ this->set_tick_rate(1.0);
}
void set_tick_rate(const double rate){