13 lines
588 B
Python
13 lines
588 B
Python
|
|
"""
|
||
|
|
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
|