summaryrefslogtreecommitdiff
path: root/gr-uhd/lib/usrp_source_impl.h
Commit message (Collapse)AuthorAgeFilesLines
* gr-uhd: update direction key namingJacob Gilbert2021-04-051-1/+1
| | | | | | | The 'ant_direction_' key getters have been reappropriated for wider use, changing to general 'direction_' and a few minor simplifications. Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
* gr-uhd: fix command tuningJacob Gilbert2021-04-051-0/+2
| | | | | | | | | | | Command tuning has seen several updates recently and incomplete regression testing. One issue introduced is that when tuning without a direction key will result in the tune applied in the TX direction instead of the block direction (intended). This fixes that by adding member getters for block direction and putting the logic to get the command direction in a common function. Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
* uhd: Fix filter APIMartin Braun2021-02-181-0/+6
| | | | | | | | | | | | 9cdfe5141a exposed a bug in gr-uhd: The filter API was incorrectly implemented for UHD (multi_usrp had an API change in UHD 4.0). This is an API change, b/c the existing gr-uhd code was actually never compatible to UHD 4.0's filter API. The change is to adapt gr-uhd's filter API to that in UHD. Signed-off-by: Martin Braun <martin.braun@ettus.com>
* uhd: log over/underflows, time errors, better tag time logsMarcus Müller2021-02-181-0/+8
| | | | | | | | | For the potentially recurring messages, use a configurable timeout: [uhd] logging_interval_ms = 750 Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* uhd: Remove (almost all) occurrences of BoostMartin Braun2021-02-051-2/+2
| | | | | | | | | | The following usages of Boost remain: - boost::format - boost::program_options for the examples - Boost thread interruption directives to interact with GNU Radio runtime Signed-off-by: Martin Braun <martin@gnuradio.org>
* uhd: Control of frequency and gain in both directions at the same momentNiki2021-01-241-1/+2
| | | | | | | | | | | | | | | | | | | It implements the ability to control frequency and gain in both directions (Tx and Rx) with use of a single UHD source or sink - in the same moment. It is possible to do that in separate moments with current UHD blocks but this way it is not possible to change both Rx and Tx settings for the same burst. Now, a single message can do that. Note that there is a bit of an oddity here: The GNU Radio USRP blocks are either Rx or Tx (source or sink). However, they all encapsulate an underlying multi_usrp object. That means that under the hood, a USRP source or a USRP sink potentially has access to the "other" direction. This is made use in this patch. To use this feature, add a direction key to the message dictionary going to the block. Signed-off-by: Martin Braun <martin@gnuradio.org>
* modernization: `override` instead of virtual in all compilation unitsMarcus Müller2020-11-031-56/+57
|
* Add `override` for common virtual function overridesThomas Habets2020-11-031-1/+1
| | | | | | | | | | Mostly done with: ``` find -name "*_impl.h" | xargs sed -i -r '/(void forecast|int work|int general_work|bool check_topology)\(/{:back /\)/b nxt;N;b back;:nxt s/\)$|\)(;)/) override\1/g}' ``` Then I removed an incorrect `work` that this found.
* uhd: Add power reference APIsMartin Braun2020-08-261-0/+4
| | | | | | | | | | | | | | | | | | | | | UHD 4.0 is introducing a power reference level API, which will now become available in GNU Radio. Its availability is conditionally compiled into GNU Radio based on whether or not the feature is available in the UHD version GNU Radio was compiled against. USRP source and sink blocks receive the following new APIs: - has_power_reference() - set_power_reference() - get_power_reference() The command interface now understands a new `power_dbm` dictionary key. The GRC bindings can now switch between absolute gain, normalized gain, and absolute power settings. If GNU Radio was compiled against an older version of UHD (prior to UHD 4.0) which doesn't have this API, an error or warning is printed, the has_power_reference() will return false, and the others will throw an exception.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-93/+98
|
* uhd: Add set_rx_agc() API call and GRC bindingsPeter Witkowski2019-05-171-0/+1
| | | | This adds the set_rx_agc() call from UHD to the USRP source.
* Merge branch 'master' into nextJohnathan Corgan2017-10-051-1/+6
|\ | | | | | | | | | | | | Conflicts: gr-digital/examples/CMakeLists.txt gr-uhd/lib/usrp_source_impl.cc gr-uhd/lib/usrp_source_impl.h
| * Merge remote-tracking branch 'github/pr/1437'Johnathan Corgan2017-10-051-0/+4
| |\
| | * uhd: Parametrize recv timeout and single-packet optionMartin Braun2017-08-211-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | usrp_source currently hard-codes timeout values. For high-performance applications, it might be desirable to control the details of the call to uhd::rx_streamer::recv(), which is now enabled. Defaults are unchanged.
| * | gr-uhd: Added modification to UHD message-based tuning which will allow for ↵Jacob Gilbert2017-09-121-1/+1
| |/ | | | | | | timed tune command order to be ensured across TX/RX by enabling tuning of RX path from the sink block or TX path from source block. Doxygen also updated to reflect the new command.
* | Merge branch 'master' into nextJohnathan Corgan2017-03-051-1/+0
|\| | | | | | | | | Conflicts: gr-uhd/lib/usrp_source_impl.cc
| * uhd: Always query current frequency when outputting tagsMartin Braun2017-02-241-1/+0
| | | | | | | | | | | | | | | | This fixes two issues: - When updating the frequency via messages, the new tags now reflect the actual frequency - When different channels have different center frequencies, every channel reports its own frequency accurately
* | uhd: Updated minimum version to 3.5.5 and removed deprecated codeMartin Braun2016-09-241-11/+1
|/
* uhd: Replace zero-timeout double-recv() with one recv() callMartin Braun2016-09-231-1/+2
| | | | | For most cases, the zero-timeout call will just return empty buffers, resulting in extra overhead.
* Added controls for importing, exporting, and sharing LOsDerek Kozel2016-05-231-0/+9
|
* uhd: add command handler to add a time tagNathan West2016-05-021-0/+1
|
* Revert "Merge remote-tracking branch 'dkozel/uhd_lo_api'"Johnathan Corgan2016-04-271-9/+0
| | | | | This reverts commit 8820340ae2cb119e177a445f8d9b079759ed2dd7, reversing changes made to 71a7aeb97b215210c8ee1148b2d1a96b0b29e97f.
* Added controls for importing, exporting, and sharing LOsDerek Kozel2016-04-251-0/+9
|
* gr-uhd: add parameter to enable/disable streaming when flowgraph startsJohannes Schmitz2015-12-161-1/+3
|
* uhd: Adds ControlPort support to USRP source block's command message port.Tom Rondeau2015-10-161-0/+2
|
* uhd: Refactored usrp_{sink,source} blocksMartin Braun2015-04-301-42/+5
|
* gr-uhd: support for IQ imbalance enable/disableJulian Arnold2015-03-241-0/+1
|
* uhd: Added set_stream_args() method to sink & sourceMartin Braun2015-02-031-0/+1
|
* uhd: Normalized gain rangesMartin Braun2015-01-271-0/+2
|
* uhd: Added checks for lock sensors.Martin Braun2014-07-081-0/+3
| | | | | | | | When operating with an external ref, in MIMO mode or with a GPSDO, the constructor now waits until the lock sensors report succesful locking. If this fails, a warning is displayed using the logger interface, to keep backward compatibility.
* uhd: Refactored common stuff from usrp sink and sourceMartin Braun2014-07-071-10/+3
|
* uhd: Added command interface to uhd source, modified command syntaxMartin Braun2014-07-071-0/+15
|
* uhd: Fix possible freeze-up when using lock/unlock (Solution by Johannes Demel)Martin Braun2014-01-271-1/+4
|
* Merge branch 'next' into runtime_pimplJohnathan Corgan2013-05-121-0/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Catches up runtime_pimpl branch with changes on next since the initial branch start. Conflicts: gnuradio-runtime/include/gnuradio/constants.h gnuradio-runtime/include/gnuradio/tags.h gnuradio-runtime/include/gr_block_detail.h gnuradio-runtime/include/gr_buffer.h gnuradio-runtime/lib/CMakeLists.txt gnuradio-runtime/lib/gr_block.cc gnuradio-runtime/lib/gr_block_detail.cc gnuradio-runtime/lib/gr_block_executor.cc gnuradio-runtime/lib/gr_buffer.cc gnuradio-runtime/lib/gr_realtime.cc gr-blocks/lib/interleaved_short_to_complex_impl.cc
| * Merge branch 'master' into nextJohnathan Corgan2013-04-171-0/+2
| | | | | | | | | | | | | | | | Conflicts: gr-uhd/include/gr_uhd_usrp_sink.h gr-uhd/include/gr_uhd_usrp_source.h gr-uhd/lib/gr_uhd_usrp_sink.cc gr-uhd/lib/gr_uhd_usrp_source.cc
* | uhd: moved include dir to gnuradio/uhdJohnathan Corgan2013-04-301-1/+1
| |
* | runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-2/+2
|/
* ctrlport: adding ability to set/get sample rate of USRP source/sink over ↵Tom Rondeau2013-03-081-0/+2
| | | | controlport.
* uhd: converted gr-uhd to v3.7 style.Tom Rondeau2013-02-191-0/+144