Package Details: rsp_tcp-git v0.1.beta.r8.ga799c49-1

Git Clone URL: https://aur.archlinux.org/rsp_tcp-git.git (read-only, click to copy)
Package Base: rsp_tcp-git
Description: a rtl_tcp compatible IQ server for the RSP range of SDRPlay SDR
Upstream URL: https://github.com/SDRplay/RSPTCPServer
Licenses: GPL3
Provides: rsp_tcp
Submitter: FuzzyCheese
Maintainer: FuzzyCheese
Last Packager: FuzzyCheese
Votes: 0
Popularity: 0.000000
First Submitted: 2021-04-28 20:04 (UTC)
Last Updated: 2021-04-28 20:04 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

MarsSeed commented on 2023-10-31 14:06 (UTC)

It seems this is the proper, actively maintained continuation fork:

https://github.com/ON5HB/rsp_tcp

synthead commented on 2023-03-06 17:42 (UTC)

Here's a systemd service that works with this package:

If you're adding this as an admin outside the package, I recommend putting this in /etc/systemd/system/rsp_tcp.service. If you build it into this package, I recommend /usr/lib/systemd/system/rsp_tcp.service.

[Unit]
Description=RSP TCP Server
After=network.target sdrplay.service

[Service]
Restart=on-failure
RestartSec=1
EnvironmentFile=/etc/conf.d/rsp_tcp
ExecStart=/usr/bin/rsp_tcp "$RSP_TCP_ARGS"

[Install]
WantedBy=multi-user.target

And this is what I'm using for /etc/conf.d/rsp_tcp:

# CLI arguments to pass to rsp_tcp.  See rsp_tcp --help.
RSP_TCP_ARGS="-a 0.0.0.0"