diff options
author | A. Maitland Bottoms <bottoms@debian.org> | 2021-10-20 10:07:24 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-10-22 06:35:44 -0700 |
commit | 81ac62f79129a447e128c3991eeb59a65056d50c (patch) | |
tree | e58d9866ae8ac7912509dc65d84464570a68fa2e /host | |
parent | 311b87df01d71bfc497cb827d5102208a541d6e4 (diff) | |
download | uhd-81ac62f79129a447e128c3991eeb59a65056d50c.tar.gz uhd-81ac62f79129a447e128c3991eeb59a65056d50c.tar.bz2 uhd-81ac62f79129a447e128c3991eeb59a65056d50c.zip |
uhd: Fix spelling errors
Thanks to Mait for pointing these out!
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/dboard/twinrx/twinrx_experts.cpp | 2 | ||||
-rw-r--r-- | host/lib/utils/ihex.cpp | 2 | ||||
-rw-r--r-- | host/utils/b2xx_fx3_utils.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/dboard/twinrx/twinrx_experts.cpp b/host/lib/usrp/dboard/twinrx/twinrx_experts.cpp index 58e22e089..e3436d18a 100644 --- a/host/lib/usrp/dboard/twinrx/twinrx_experts.cpp +++ b/host/lib/usrp/dboard/twinrx/twinrx_experts.cpp @@ -260,7 +260,7 @@ void twinrx_chan_gain_expert::resolve() { if (_gain_profile != "default") { // TODO: Implement me! - throw uhd::not_implemented_error("custom gain strategies not implemeted yet"); + throw uhd::not_implemented_error("custom gain strategies not implemented yet"); } // Lookup table using settings diff --git a/host/lib/utils/ihex.cpp b/host/lib/utils/ihex.cpp index bea03c2ac..b34c524a3 100644 --- a/host/lib/utils/ihex.cpp +++ b/host/lib/utils/ihex.cpp @@ -125,7 +125,7 @@ void ihex_reader::read(ihex_reader::record_handle_type record_handler) if (ret < 0) { throw uhd::io_error( - "ihex_reader::read(): record hander returned failure code"); + "ihex_reader::read(): record handler returned failure code"); } } diff --git a/host/utils/b2xx_fx3_utils.cpp b/host/utils/b2xx_fx3_utils.cpp index 53d508268..1a342919c 100644 --- a/host/utils/b2xx_fx3_utils.cpp +++ b/host/utils/b2xx_fx3_utils.cpp @@ -418,7 +418,7 @@ int32_t main(int32_t argc, char* argv[]) try { b200->reset_fx3(); } catch (std::exception& e) { - std::cerr << "Exception while reseting FX3: " << e.what() << std::endl; + std::cerr << "Exception while resetting FX3: " << e.what() << std::endl; } // re-open device |