sdrangel/plugins/channelrx/remotetcpsink
Daniele Forsi 570c1f6877 Remove unused includes and use more direct includes 2024-04-20 19:10:18 +02:00
..
CMakeLists.txt Update CMakeLists.txt to support both Qt5 and Qt6. Add option ENABLE_QT6 2022-11-17 14:34:54 +00:00
readme.md Add support for settings keys. 2023-09-15 09:30:49 +01:00
remotetcpprotocol.h add rsp1b to remote sinks/sources 2024-02-18 19:57:00 +01:00
remotetcpsink.cpp Fix bug that prevents settings changes updates via reverse API 2024-04-14 18:58:12 +02:00
remotetcpsink.h Frequency Scanner: allow scanning channels of a MIMO device 2023-12-14 21:57:49 +01:00
remotetcpsinkbaseband.cpp Remove unused includes and use more direct includes 2024-04-11 23:31:34 +02:00
remotetcpsinkbaseband.h Rewriting of copyright notices for plugins/channelrx. Part of #1893 2023-11-18 12:02:48 +01:00
remotetcpsinkgui.cpp Remove unused includes and use more direct includes 2024-04-11 23:31:34 +02:00
remotetcpsinkgui.h Fix channel marker 2024-04-10 01:32:30 +01:00
remotetcpsinkgui.ui Add support for settings keys. 2023-09-15 09:30:49 +01:00
remotetcpsinkplugin.cpp Updated versions and changelogs 2024-04-14 11:41:00 +02:00
remotetcpsinkplugin.h Rewriting of copyright notices for plugins/channelrx. Part of #1893 2023-11-18 12:02:48 +01:00
remotetcpsinksettings.cpp Rewriting of copyright notices for plugins/channelrx. Part of #1893 2023-11-18 12:02:48 +01:00
remotetcpsinksettings.h Rewriting of copyright notices for plugins/channelrx. Part of #1893 2023-11-18 12:02:48 +01:00
remotetcpsinksink.cpp Remove unused includes and use more direct includes 2024-04-11 23:31:34 +02:00
remotetcpsinksink.h Remove unused includes and use more direct includes 2024-04-20 19:10:18 +02:00
remotetcpsinkwebapiadapter.cpp Rewriting of copyright notices for plugins/channelrx. Part of #1893 2023-11-18 12:02:48 +01:00
remotetcpsinkwebapiadapter.h Rewriting of copyright notices for plugins/channelrx. Part of #1893 2023-11-18 12:02:48 +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 protocol 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. Use 0.0.0.0 for any interface.

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).