Some topics are still about Phantom, they do not apply to Nova. For Phantom problems use the Phantom forum: https://www.phantomsdr.fun/
airspyhf_rx -s "0xDD52EB5DAC3839F7" -f 0.456 -a 912000 -r stdout > $FIFO2 &
{
"id": "rx3",
"input": {
"accelerator": "clfft",
"audio_compression": "adpcm",
"audio_sps": 12000,
"brightness_offset": 0,
"defaults": {
"frequency": 648000,
"modulation": "AM",
"squelch_enabled": false
},
"driver": {
"format": "cf32",
"kind": "fifo",
"path": "rx2.fifo"
},
"fft_size": 131072,
"frequency": 456000,
"signal": "iq",
"smeter_offset": -40,
"sps": 912000,
"waterfall_compression": "zstd",
"waterfall_size": 2048
},
"name": "Airspy Disco"
}
play_sdr -f 1024000 -s 2048000 -R 40 -l 1 -n 0 -x 16 - > $FIFO1 &
{
"id": "rx3",
"input": {
"accelerator": "clfft",
"audio_compression": "adpcm",
"audio_sps": 12000,
"brightness_offset": -6,
"defaults": {
"frequency": 648000,
"modulation": "AM",
"squelch_enabled": false
},
"driver": {
"format": "s16",
"kind": "fifo",
"path": "rx1.fifo"
},
"fft_size": 131072,
"frequency": 1024000,
"signal": "iq",
"smeter_offset": -50,
"sps": 2048000,
"waterfall_compression": "zstd",
"waterfall_size": 2048
},
"name": "SDRplay RSP2"
}
#!/bin/bash
cd /opt/novasdr/
# kill nova and all receivers
killall -s 9 novasdr-server
killall -s 9 rx888
## Files to load
FIFO0=rx0.fifo
#FIFO1=rx1.fifo
#FIFO2=rx2.fifo
#FIFO3=rx3.fifo
#FIFO4=rx4.fifo
## Make all fifo's
[ ! -e "$FIFO0" ] && mkfifo $FIFO0
#[ ! -e "$FIFO1" ] && mkfifo $FIFO1
#[ ! -e "$FIFO2" ] && mkfifo $FIFO2
#[ ! -e "$FIFO3" ] && mkfifo $FIFO3
#[ ! -e "$FIFO4" ] && mkfifo $FIFO4
# Push all receivers into fifox
./rx888_stream/target/release/rx888_stream -f ./rx888_stream/SDDC_FX3.img -s 60000000 -g 50 -m low -o - > $FIFO0 &
sleep 3
#next receiver
#sleep 3
# Start nova itself
./novasdr-server --no-file-log
#!/bin/bash
cd /opt/novasdr/
killall -s 9 novasdr-server
exit
[Unit]
Description=NovaSDR WebSDR
After=network-online.target
[Service]
Type=exec
ExecStart=/opt/novasdr/start-websdr.sh
ExecStop=/opt/novasdr/stop-websdr.sh
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target
{
"id": "rx0",
"input": {
"accelerator": "clfft",
"audio_compression": "adpcm",
"audio_sps": 12000,
"brightness_offset": 0,
"defaults": {
"frequency": 3630000,
"modulation": "LSB",
"ssb_highcut_hz": 2800,
"ssb_lowcut_hz": 100
},
"driver": {
"format": "s16",
"kind": "fifo",
"path": "rx0.fifo"
},
"fft_size": 524288,
"fft_threads": 2,
"frequency": 0,
"signal": "real",
"smeter_offset": -30,
"sps": 60000000,
"ssb_highcut_hz": 2800,
"ssb_lowcut_hz": 100,
"waterfall_compression": "zstd",
"waterfall_size": 2048
},
"name": "RX888MK2 (0-30MHz)"
},
Page created in 0.008 seconds with 17 queries.