sdrangel/plugins/channelrx/remotetcpsink
Jon Beniston c966f1cb5a dd maximize button to MainSpectrum and expandible Channels and Features.
Add sizeToContents in ChannelGUI and FeatureGUI, called when widget is
rolled, so we can remove resizing code from all of the individual
channels and features.

In RollupContents, use minimumSizeHint for calculated size, so that
minimumWidth can come from .ui file.

In DeviceGUI::sizeToContents(), call adjustSize(), so Device GUIs start
out at minimum needed size (which should restore appearance prior to
last patch).

In stackSubWindows, use available space for channels if no
spectrum/features present.
In stackSubWindows, fix spectrum from being sized too big, resulting in
scroll bars appearing.
Reset user-defined channel width in stackSubWindows, when channels are
removed.
Don't stack maximized windows.

There's one hack in Channel/FeatureGUI::maximizeWindow(). It seems that
when maximimzing a window, QOpenGLWidgets aren't always paint properly
immediately afterwards, so the code forces an additional update. I can't
see why the first call to paintGL doesn't work.
2022-11-11 12:24:27 +00:00
..
CMakeLists.txt Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00
readme.md Add links to each others docs 2022-07-19 10:19:44 +01:00
remotetcpprotocol.h Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00
remotetcpsink.cpp Fix variable name 2022-07-19 10:33:01 +01:00
remotetcpsink.h Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00
remotetcpsinkbaseband.cpp Replace deprecated QMutex(Recursive) with QRecursiveMutex 2022-09-17 23:00:07 +02:00
remotetcpsinkbaseband.h Replace deprecated QMutex(Recursive) with QRecursiveMutex 2022-09-17 23:00:07 +02:00
remotetcpsinkgui.cpp dd maximize button to MainSpectrum and expandible Channels and Features. 2022-11-11 12:24:27 +00:00
remotetcpsinkgui.h dd maximize button to MainSpectrum and expandible Channels and Features. 2022-11-11 12:24:27 +00:00
remotetcpsinkgui.ui Set window width to account for miniumum width required for visible rollups. 2022-11-08 09:43:58 +00:00
remotetcpsinkplugin.cpp Updated versions and changelogs 2022-08-03 18:52:33 +02:00
remotetcpsinkplugin.h Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00
remotetcpsinksettings.cpp Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00
remotetcpsinksettings.h Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00
remotetcpsinksink.cpp Replace deprecated QMutex(Recursive) with QRecursiveMutex 2022-09-17 23:00:07 +02:00
remotetcpsinksink.h Replace deprecated QMutex(Recursive) with QRecursiveMutex 2022-09-17 23:00:07 +02:00
remotetcpsinkwebapiadapter.cpp Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00
remotetcpsinkwebapiadapter.h Add Remote TCP Input and Remote TCP Sink plugins 2022-07-19 10:10:20 +01:00

readme.md

Remote TCP sink channel plugin

Introduction

This plugin sends I/Q samples from the baseband via TCP/IP across a network to a client application. The client application could be SDRangel using the Remote TCP Input plugin or a rtl_tcp compatible application. This means that applications using rtl_tcp protcol can connect to the wide variety of SDRs supported by SDRangel.

Interface

Remote TCP sink channel plugin GUI

1: Frequency shift from center frequency of reception

This is the shift of the channel center frequency from the device center frequency. This is used to select the desired part of the signal when the channel sample rate is lower than the baseband sample rate.

2: Gain

Sets a gain figure in dB that is applied to I/Q samples before transmission via TCP/IP. This option may be useful for amplifying very small signals from SDRs with high-dynamic range (E.g. 24-bits), when the network sample bit-depth is 8-bits.

3: Sample rate

Specifies the channel and network sample rate in samples per second. If this is different from the baseband sample rate, the baseband signal will be decimated to the specified rate.

4: Sample bit depth

Specifies number of bits per I/Q sample transmitted via TCP/IP.

5: IP address

IP address of the local network interface on which the server will listen for TCP/IP connections from network clients.

6: Port

TCP port on which the server will listen for connections.

7: Protocol

Specifies the protocol used for sending IQ samples and metadata to clients via TCP/IP.

  • RTL0: Compatible with rtl_tcp - limited to 8-bit IQ data.
  • SDRA: Enhanced version of protocol that allows device settings to be sent to clients and for higher bit depths to be used (8, 16, 24 and 32).