Now we can even decode spaces

This commit is contained in:
ha7ilm 2017-05-07 23:45:53 +02:00
parent a985ba4af5
commit 90edd203d5
2 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,7 @@ fft_size=4096 #Should be power of 2
fft_voverlap_factor=0.3 #If fft_voverlap_factor is above 0, multiple FFTs will be used for creating a line on the diagram.
samp_rate = 250000
center_freq = 145525000
center_freq = 144250000
rf_gain = 5 #in dB. For an RTL-SDR, rf_gain=0 will set the tuner to auto gain mode, else it will be in manual gain mode.
ppm = 0

View File

@ -2337,6 +2337,7 @@ function secondary_demod_push_data(x)
if(y=="&") return "&";
if(y=="<") return "&lt;";
if(y==">") return "&gt;";
if(y==" ") return "&nbsp;";
return y;
}).join("");
$("#openwebrx-cursor-blink").before("<span class=\"part\"><span class=\"subpart\">"+x+"</span></span>");