diff options
| author | Martin Braun <martin.braun@ettus.com> | 2018-02-15 23:05:54 +0100 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2018-02-15 23:05:54 +0100 | 
| commit | 1ac47398feca6a3093bcec92cbeb603eb81350dd (patch) | |
| tree | 9e89a9511eb3aa69a05193bc4b592eebe65ca42c | |
| parent | ddb58eae546cab27b63da1933e20b8015e5a2ba2 (diff) | |
| download | uhd-1ac47398feca6a3093bcec92cbeb603eb81350dd.tar.gz uhd-1ac47398feca6a3093bcec92cbeb603eb81350dd.tar.bz2 uhd-1ac47398feca6a3093bcec92cbeb603eb81350dd.zip  | |
mg: Fixed typo in set_rx_bandwidth()
| -rw-r--r-- | host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp b/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp index ebb350f4a..b15f1250b 100644 --- a/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp +++ b/host/lib/usrp/dboard/magnesium/magnesium_radio_ctrl_impl.cpp @@ -387,7 +387,8 @@ double magnesium_radio_ctrl_impl::set_rx_bandwidth(      // FIXME: setting analog bandwidth on AD9371 take no effect.      // Remove this warning when ADI can confirm that it works.      UHD_LOG_WARNING(unique_id(), -        "set_tx_bandwidth take no effect on AD9371. Default analog bandwidth is 100MHz"); +        "set_rx_bandwidth take no effect on AD9371. " +        "Default analog bandwidth is 100MHz");      return AD9371_RX_MAX_BANDWIDTH;  } @@ -400,7 +401,8 @@ double magnesium_radio_ctrl_impl::set_tx_bandwidth(      // FIXME: setting analog bandwidth on AD9371 take no effect.      // Remove this warning when ADI can confirm that it works.      UHD_LOG_WARNING(unique_id(), -        "set_tx_bandwidth take no effect on AD9371. Default analog bandwidth is 100MHz"); +        "set_tx_bandwidth take no effect on AD9371. " +        "Default analog bandwidth is 100MHz");      return AD9371_TX_MAX_BANDWIDTH ;  }  | 
