mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
fix "remote" mappings for rtl_tcp and soapy_remote
This commit is contained in:
parent
6cca37a9df
commit
b877d8439a
|
|
@ -26,4 +26,4 @@ class RtlTcpDeviceDescription(ConnectorDeviceDescription):
|
|||
return super().getInputs() + [RemoteInput()]
|
||||
|
||||
def getDeviceMandatoryKeys(self):
|
||||
return super().getDeviceMandatoryKeys() + ["device"]
|
||||
return super().getDeviceMandatoryKeys() + ["remote"]
|
||||
|
|
|
|||
|
|
@ -29,5 +29,8 @@ class SoapyRemoteDeviceDescription(SoapyConnectorDeviceDescription):
|
|||
),
|
||||
]
|
||||
|
||||
def getDeviceMandatoryKeys(self):
|
||||
return super().getDeviceMandatoryKeys() + ["remote"]
|
||||
|
||||
def getDeviceOptionalKeys(self):
|
||||
return super().getDeviceOptionalKeys() + ["remote_driver"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue