sdrangel/plugins/channeltx/remotesource
Davide Gerhard f61d1c3908
add gettimeofday() compatibility function for windows
plugins that need that:
  - remotesink
  - remotesource
2019-05-28 15:19:19 +02:00
..
CMakeLists.txt add gettimeofday() compatibility function for windows 2019-05-28 15:19:19 +02:00
readme.md Migration of DaemonSource channel to RemoteSource 2019-01-23 00:44:13 +01:00
remotesource.cpp add gettimeofday() compatibility function for windows 2019-05-28 15:19:19 +02:00
remotesource.h Channel local source (1) 2019-05-10 00:34:35 +02:00
remotesourcegui.cpp Propagate change to channel UIs 2019-05-09 21:07:05 +02:00
remotesourcegui.h Fixed incomplete copyright headers (1) 2019-04-11 06:39:30 +02:00
remotesourcegui.ui Migration of DaemonSource channel to RemoteSource 2019-01-23 00:44:13 +01:00
remotesourceplugin.cpp fix windows code to build with MSVC 2019-05-28 15:19:19 +02:00
remotesourceplugin.h Single channel API 2019-05-09 17:27:12 +02:00
remotesourcesettings.cpp Fixed incomplete copyright headers (1) 2019-04-11 06:39:30 +02:00
remotesourcesettings.h Fixed incomplete copyright headers (1) 2019-04-11 06:39:30 +02:00
remotesourcethread.cpp cm256cc: fix path and pkgconfig discovery 2019-04-15 15:39:57 +02:00
remotesourcethread.h Fixed incomplete copyright headers (1) 2019-04-11 06:39:30 +02:00

readme.md

Remote source channel plugin

Introduction

This plugin receives I/Q samples from UDP and copies them to the baseband to be transmitted by the sink output device. It uses SDRangel remote format and possible FEC protection.

It is present only in Linux binary releases.

Build

The plugin will be built only if the CM256cc library is installed in your system. For CM256cc library you will have to specify the include and library paths on the cmake command line. Say if you install cm256cc in /opt/install/cm256cc you will have to add -DCM256CC_DIR=/opt/install/cm256cc to the cmake commands.

Interface

Remote source channel plugin GUI

1: Data local address

IP address of the local network interface from where the I/Q samples are fetched via UDP

2: Data local port

Local port from where the I/Q samples are fetched via UDP

3: Validation button

When the return key is hit within the address (1) or port (2) the changes are effective immediately. You can also use this button to set again these values.

4: Stream sample rate

Stream sample rate as specified in the stream meta data

5: Stream status

Remote source channel plugin GUI

5.1: Total number of frames and number of FEC blocks

This is the total number of frames and number of FEC blocks separated by a slash '/' as sent in the meta data block thus acknowledged by the distant server. When you set the number of FEC blocks with (4.1) the effect may not be immediate and this information can be used to monitor when it gets effectively set in the distant server.

A frame consists of 128 data blocks (1 meta data block followed by 127 I/Q data blocks) and a variable number of FEC blocks used to protect the UDP transmission with a Cauchy MDS block erasure correction.

Using the Cauchy MDS block erasure correction ensures that if at least the number of data blocks (128) is received per complete frame then all lost blocks in any position can be restored. For example if 8 FEC blocks are used then 136 blocks are transmitted per frame. If only 130 blocks (128 or greater) are received then data can be recovered. If only 127 blocks (or less) are received then none of the lost blocks can be recovered.

5.2: Stream status

The color of the icon indicates stream status:

  • Green: all original blocks have been received for all frames during the last polling timeframe (ex: 136)
  • No color: some original blocks were reconstructed from FEC blocks for some frames during the last polling timeframe (ex: between 128 and 135)
  • Red: some original blocks were definitely lost for some frames during the last polling timeframe (ex: less than 128)

5.3: Actual stream sample rate

This is the sample rate calculated using the counter of samples between two consecutive polls

5.4: Reset events counters

This push button can be used to reset the events counters (5.5 and 5.6) and reset the event counts timer (5.7)

5.5: Unrecoverable error events counter

This counter counts the unrecoverable error conditions found (i.e. 4.4 lower than 128) since the last counters reset.

5.6: Recoverable error events counter

This counter counts the unrecoverable error conditions found (i.e. 4.4 between 128 and 128 plus the number of FEC blocks) since the last counters reset.

5.7: events counters timer

This HH:mm:ss time display shows the time since the reset events counters button (5.4) was pushed.

6: Transmitter queue length gauge

This is ratio of the reported number of data frame blocks in the remote queue over the total number of blocks in the queue.

7: Transmitter queue length status

This is the detail of the ratio shown in the gauge. Each frame block is a block of 127 ✕ 126 samples (16 bit I or Q samples) or 127 ✕ 63 samples (24 bit I or Q samples).