2025-09-12 11:32:49 -04:00
|
|
|
"""
|
2025-09-12 14:51:45 -04:00
|
|
|
This package provides a unified API for working with a variety of software-defined radios.
|
2025-09-12 11:32:49 -04:00
|
|
|
It streamlines tasks involving signal reception and transmission, as well as common administrative
|
|
|
|
|
operations such as detecting and configuring available devices.
|
|
|
|
|
"""
|
|
|
|
|
|
M
2025-12-15 15:07:48 -05:00
|
|
|
__all__ = ["SDR", "SDRError", "SDRParameterError"]
|
2025-09-12 11:32:49 -04:00
|
|
|
|
M
2025-12-15 15:07:48 -05:00
|
|
|
from .sdr import SDR, SDRError, SDRParameterError
|