aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/python/tx_waveforms.py
Commit message (Collapse)AuthorAgeFilesLines
* python: multi_usrp: Fix issues in send_waveform()Martin Braun2021-10-061-7/+7
| | | | | | | - Like with RX, this now allows passing in stream time and existing streamer - There was no EOB being sent at the end (now there is) - Fixed some linter issues
* Remove remaining Python 2 referencesMartin Braun2020-05-071-1/+1
| | | | | | | This changes two things in all applicable files: - Remove imports from __future__ - Change default shebangs from /usr/bin/env python to /usr/bin/env python3
* python: Separating exposed Python data structuresPaul David2018-06-201-0/+58
- Separating exposed Python data structures into logical sections - Exposes all of the multi_usrp API - Adds a layer of Python for documentation and adding helper methods - Adds improvements and fixes to the MultiUSRP object - Includes additional exposed data structures (like time_spec_t, etc.) - Add code to release the Python GIL during long C++ calls