Fix things in the readme, added inactive.html for issue/22
This commit is contained in:
parent
38c01f0567
commit
f5f4aaa75e
11
README.md
11
README.md
@ -22,15 +22,17 @@ It has the following features:
|
|||||||
- Receivers can now be listed on <a href="http://sdr.hu/">sdr.hu</a>.
|
- Receivers can now be listed on <a href="http://sdr.hu/">sdr.hu</a>.
|
||||||
- License for OpenWebRX is now Affero GPL v3.
|
- License for OpenWebRX is now Affero GPL v3.
|
||||||
|
|
||||||
**News (2015-09-01)**
|
**News (2015-02-14)**
|
||||||
- The DDC in *csdr* has been hand-optimized for ARM NEON, so it runs 3× faster on the Raspberry Pi than before.
|
- The DDC in *csdr* has been hand-optimized for ARM NEON, so it runs 3× faster on the Raspberry Pi than before.
|
||||||
- Also we use *ncat* instead of *rtl_mus*, and it is 3× faster.
|
- Also we use *ncat* instead of *rtl_mus*, and it is 3× faster.
|
||||||
- OpenWebRX now supports URLs like: http://localhost:8073/#freq=145555000,mod=usb
|
- OpenWebRX now supports URLs like: http://localhost:8073/#freq=145555000,mod=usb
|
||||||
|
- UI improvements, thanks to John Seamons and Gnoxter.
|
||||||
|
|
||||||
**News (2016-01-23)**
|
> When upgrading OpenWebRX, please make sure that you upgrade *csdr*, and install the new (optional) dependency *ncat*!
|
||||||
- *ncat* is now a requirement for OpenWebRX.
|
|
||||||
|
|
||||||
When upgrading OpenWebRX, please make sure that you upgrade *csdr*, and install the new (optional) dependency *ncat*!
|
[sdr.hu](http://sdr.hu) is a site which lists the active, public receivers. Your receiver [sdr.hu/openwebrx](can also be part of it), if you want.
|
||||||
|
|
||||||
|
![sdr.hu](/screenshot-sdrhu.png?raw=true)
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
@ -54,7 +56,6 @@ You can now open the GUI at <a href="http://localhost:8073">http://localhost:807
|
|||||||
|
|
||||||
Please note that the server is also listening on the following ports (on localhost only):
|
Please note that the server is also listening on the following ports (on localhost only):
|
||||||
|
|
||||||
- port 8888 for the I/Q source,
|
|
||||||
- port 4951 for the multi-user I/Q server.
|
- port 4951 for the multi-user I/Q server.
|
||||||
|
|
||||||
Now the next step is to customize the parameters of your server in `config_webrx.py`.
|
Now the next step is to customize the parameters of your server in `config_webrx.py`.
|
||||||
|
@ -67,7 +67,6 @@ dsp_plugin="csdr"
|
|||||||
fft_fps=9
|
fft_fps=9
|
||||||
fft_size=4096
|
fft_size=4096
|
||||||
samp_rate = 250000
|
samp_rate = 250000
|
||||||
#samp_rate = 2048000
|
|
||||||
|
|
||||||
center_freq = 145525000
|
center_freq = 145525000
|
||||||
rf_gain = 5
|
rf_gain = 5
|
||||||
@ -89,7 +88,7 @@ format_conversion="csdr convert_u8_f"
|
|||||||
#I did not have the chance to properly test it.
|
#I did not have the chance to properly test it.
|
||||||
#samp_rate = 96000
|
#samp_rate = 96000
|
||||||
#start_rtl_command="arecord -f S16_LE -r {samp_rate} -c2 -".format(samp_rate=samp_rate)
|
#start_rtl_command="arecord -f S16_LE -r {samp_rate} -c2 -".format(samp_rate=samp_rate)
|
||||||
#format_conversion="csdr convert_i16_f | csdr gain_ff 30"
|
#format_conversion="csdr convert_s16_f | csdr gain_ff 30"
|
||||||
|
|
||||||
# >> /dev/urandom test signal source
|
# >> /dev/urandom test signal source
|
||||||
#samp_rate = 2400000
|
#samp_rate = 2400000
|
||||||
|
85
htdocs/inactive.html
Normal file
85
htdocs/inactive.html
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
<html>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This file is part of OpenWebRX,
|
||||||
|
an open-source SDR receiver software with a web UI.
|
||||||
|
Copyright (c) 2013-2015 by Andras Retzler <randras@sdr.hu>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as
|
||||||
|
published by the Free Software Foundation, either version 3 of the
|
||||||
|
License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
-->
|
||||||
|
<head><title>OpenWebRX</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
|
<style>
|
||||||
|
html, body
|
||||||
|
{
|
||||||
|
font-family: "DejaVu Sans", Verdana, Geneva, sans-serif;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
img.logo
|
||||||
|
{
|
||||||
|
margin-top: 120px;
|
||||||
|
}
|
||||||
|
div.frame
|
||||||
|
{
|
||||||
|
text-align: left;
|
||||||
|
margin:0px auto;
|
||||||
|
width: 800px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.panel
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
background-color:#777777;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: White;
|
||||||
|
font-size: 13pt;
|
||||||
|
/*text-shadow: 1px 1px 4px #444;*/
|
||||||
|
font-family: sans;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.alt
|
||||||
|
{
|
||||||
|
font-size: 10pt;
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body div a
|
||||||
|
{
|
||||||
|
color: #5ca8ff;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.browser
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="frame">
|
||||||
|
<img class="logo" src="gfx/openwebrx-logo-big.png" style="height: 60px;"/>
|
||||||
|
<div class="panel">
|
||||||
|
Sorry, the receiver is inactive due to internal error.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -234,7 +234,7 @@ def spectrum_watchdog_thread_function():
|
|||||||
while True:
|
while True:
|
||||||
time.sleep(60)
|
time.sleep(60)
|
||||||
if spectrum_thread_watchdog_last_tick and time.time()-spectrum_thread_watchdog_last_tick > 60.0:
|
if spectrum_thread_watchdog_last_tick and time.time()-spectrum_thread_watchdog_last_tick > 60.0:
|
||||||
print "[openwebrx-spectrum-watchdog] Spectrum timeout. Seems like no I/Q data is coming from the receiver.\nFor RTL-SDR, it is a common problem to randomly fail after a time, due to:\n1) overheat,\n2) insufficient current."
|
print "[openwebrx-spectrum-watchdog] Spectrum timeout. Seems like no I/Q data is coming from the receiver.\nIf you're using RTL-SDR, the receiver hardware may randomly fail under some circumstances:\n1) high temperature,\n2) insufficient current available from the USB port."
|
||||||
print "[openwebrx-spectrum-watchdog] Deactivating receiver."
|
print "[openwebrx-spectrum-watchdog] Deactivating receiver."
|
||||||
receiver_failed="spectrum"
|
receiver_failed="spectrum"
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user