USRP System¶
- class UsrpSystem(*args, **kwargs)[source]¶
Bases:
PhysicalScenario
[UsrpDevice
]Scenario of USRPs running the UHD server application.
- Parameters:
seed – Random seed used to initialize the pseudo-random number generator.
devices – Devices to be added to the scenario during initialization.
- add_device(device)[source]¶
Register an existing UHD device to be managed by the system.
- Parameters:
device (UsrpDevice) – The device to be added.
- Return type:
- new_device(ip, port=5555, *args, **kwargs)[source]¶
Create a new UHD device managed by the system.
- Parameters:
ip (
str
) – IP address of the UHD server application.port (
int
) – Port number of the UHD server application.args – Device initialization parameters. Refer to
UsrpDevice
for further details.kwargs – Device initialization parameters. Refer to
UsrpDevice
for further details.
- Return type:
Returns: A handle to the initialized device.