add more device-specific options
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
from owrx.form import Input, CheckboxInput, DropdownInput, DropdownEnum
|
||||
from owrx.form import Input, CheckboxInput, DropdownInput, DropdownEnum, TextInput
|
||||
from owrx.form.converter import OptionalConverter, EnumConverter
|
||||
from owrx.soapy import SoapySettings
|
||||
|
||||
@ -155,3 +155,10 @@ class DirectSamplingInput(DropdownInput):
|
||||
defaultFormValue=DirectSamplingOptions.DIRECT_SAMPLING_OFF.name,
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
class RemoteInput(TextInput):
|
||||
def __init__(self):
|
||||
super().__init__(
|
||||
"remote", "Remote IP and Port", infotext="Remote hostname or IP and port to connect to. Format = IP:Port"
|
||||
)
|
||||
|
Reference in New Issue
Block a user