ria-toolkit-oss/src/ria_toolkit_oss/sdr/__init__.py

13 lines
588 B
Python
Raw Normal View History

2025-09-12 11:32:49 -04:00
"""
The SDR package provides a unified API for working with a variety of software-defined radios.
It streamlines tasks involving signal reception and transmission, as well as common administrative
operations such as detecting and configuring available devices.
To add support for a new radio, subclass the ``SDR`` interface and implement all abstract methods. If you experience difficulties, please
`contact us <mailto:info@qoherent.ai>`_, we are happy to provide additional direction and/or help with the implementation details.
"""
__all__ = ["SDR"]
from .sdr import SDR