summaryrefslogtreecommitdiff
path: root/gr-iio/python
Commit message (Collapse)AuthorAgeFilesLines
* iio: pep8 formattingJosh Morman2021-11-241-1/+3
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* iio: make fmcomms freq parameter doubleJosh Morman2021-10-282-2/+2
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* iio: iio_param_t for parameter settingJosh Morman2021-10-283-3/+10
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* iio: de-duplicate the pluto wrappersJosh Morman2021-10-1313-513/+102
| | | | | | | | | | | | | The fmcomms2 source/sink were wrapped with hier blocks that were used as the basis for the pluto blocks This templatizes the fmcomms2 blocks so they can be directly used, and since the pluto block is so close to the fmcomms block, just use grc as the wrapper around it fmcomms2/pluto can also now be used as sc16 or fc32 Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
* iio: Remove struct specifier (not necessary in C++, clutters a bit)Marcus Müller2021-08-029-9/+9
| | | | Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* gr-iio: Add packetized transfer support using stream tagsDavid Winter2021-06-2713-10/+38
| | | | | | | | | | | | | | | This PR adds stream tagging support to the device_source and device_sink blocks, and thus also deriviates like the fmcomms2 and pluto. The important bits are: * The source block now tags buffer boundaries * When tagged_input is enabled on the device sink, it enforces that all input packet sizes match buffer_size / (1 + interpolation). This isn't very flexible, but can be understood as a safeguard against unexpected behavior. Signed-off-by: David Winter <david.winter@analog.com>
* Doxygen: Remove warnings from gr-soapy and gr-iio.Ron Economos2021-06-161-1/+1
| | | | Signed-off-by: Ron Economos <w6rz@comcast.net>
* global: remove iostream from all files not use cout|cerr|cin|clogMarcus Müller2021-06-172-2/+2
| | | | Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* iio: Rename set_gain to set_attenuation in pluto_sinkDavid Winter2021-06-091-1/+1
| | | | Signed-off-by: David Winter <david.winter@analog.com>
* iio: use enums for attr and data typeJosh Morman2021-06-045-2/+53
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* feature: gr-iioAdam Horden2021-06-042-4/+2
| | | | | | | | | | | | | | | | Refactoring. Remove parameter `required_enable`. This was unused and during testing was set to: `required_enable == false` This code path has never been used and or tested. We have concluded after investigating and testing, this could safely be removed to enable a cleaner API. Signed-off-by: Adam Horden <adam.horden@horden.engineering>
* iio: clean up fmcomms2 public headersJosh Morman2021-06-044-6/+6
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* iio: update hash for pluto_sinkJosh Morman2021-06-041-1/+1
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* iio: clang-formatJosh Morman2021-06-041-2/+1
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* iio: remove some commented codeJosh Morman2021-06-041-19/+0
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* iio: reduce cotr and set_params for pluto_sinkJosh Morman2021-06-042-32/+7
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* iio: make filter params a single apiJosh Morman2021-06-041-8/+9
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* iio: reduce exposed API and grc to plutoJosh Morman2021-06-043-25/+25
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* iio: single parameter iio api for plutoJosh Morman2021-06-043-102/+57
| | | | | | | | rather than complex constructors and a catch all set_params, construct with the minimum amount of parameters and then have them individually settable Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* gr-iio: Don't build ad9361 Python bindings when it's not available.Ryan Volz2021-06-042-16/+24
| | | | | | | Taken from PR #4465. Co-authored-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com> Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
* feature: gr-iioAdam Horden2021-06-0437-0/+1710
Co-authored-by: Edward Kigwana <ekigwana@scires.com> Co-authored-by: Travis Collins <travis.collins@analog.com> Signed-off-by: Adam Horden <adam.horden@horden.engineering>