diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-17 19:56:21 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-17 19:56:21 -0500 |
commit | 6b3b5a5757bea2e89738aeaa6077abc9cb847b44 (patch) | |
tree | 367507b09f121664aab8cc227ea7d14515b962c8 /gr-digital | |
parent | 79c51dce02f1a6f45faf60cabca2820de959ffdb (diff) |
ctrlport: adding display type for stripchart as opposed to timeseries.
Stripcharts add data to the back of what's plotted; time series plots just plot the vector given. All single-value RPC vars have been converted to use stripchart mode.
Diffstat (limited to 'gr-digital')
-rw-r--r-- | gr-digital/lib/pfb_clock_sync_ccf_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-digital/lib/pfb_clock_sync_ccf_impl.cc b/gr-digital/lib/pfb_clock_sync_ccf_impl.cc index 804c12ef18..58f41a466f 100644 --- a/gr-digital/lib/pfb_clock_sync_ccf_impl.cc +++ b/gr-digital/lib/pfb_clock_sync_ccf_impl.cc @@ -464,7 +464,7 @@ namespace gr { &pfb_clock_sync_ccf::error, pmt::mp(-2.0f), pmt::mp(2.0f), pmt::mp(0.0f), "", "Error signal of loop", - RPC_PRIVLVL_MIN, DISPTIMESERIESF))); + RPC_PRIVLVL_MIN, DISPSTRIPCHARTF))); add_rpc_variable( rpcbasic_sptr(new rpcbasic_register_get<pfb_clock_sync_ccf, float>( @@ -472,7 +472,7 @@ namespace gr { &pfb_clock_sync_ccf::rate, pmt::mp(-2.0f), pmt::mp(2.0f), pmt::mp(0.0f), "", "Rate change of phase", - RPC_PRIVLVL_MIN, DISPTIMESERIESF))); + RPC_PRIVLVL_MIN, DISPSTRIPCHARTF))); add_rpc_variable( rpcbasic_sptr(new rpcbasic_register_get<pfb_clock_sync_ccf, float>( @@ -480,7 +480,7 @@ namespace gr { &pfb_clock_sync_ccf::phase, pmt::mp(0), pmt::mp((int)d_nfilters), pmt::mp(0), "", "Current filter phase arm", - RPC_PRIVLVL_MIN, DISPTIMESERIESF))); + RPC_PRIVLVL_MIN, DISPSTRIPCHARTF))); add_rpc_variable( rpcbasic_sptr(new rpcbasic_register_get<pfb_clock_sync_ccf, float>( |