Search found 140 matches

by ON5HB
Sun Jun 02, 2019 1:55 pm
Forum: SDR Antennas
Topic: New Sdrplay and antenna creation
Replies: 21
Views: 125158

Re: New Sdrplay and antenna creation

What you have "build" is an antenna with grounding at the end. It's not uncommon and it does work. Basically you probably made this beverage without knowing: http://www.teknokekko.fi/dx/mwdx/beverage.jpg Funny thing is, the longer the wire is below 80m (especially the very low bands) often the bette...
by ON5HB
Thu May 30, 2019 8:56 am
Forum: Code Corner
Topic: rsp_tcp setup with websdr
Replies: 7
Views: 56931

Re: rsp_tcp setup with websdr

If you need help, my email is listed on my websdr.

Good luck with the project.
by ON5HB
Wed May 29, 2019 7:07 pm
Forum: Code Corner
Topic: rsp_tcp setup with websdr
Replies: 7
Views: 56931

Re: rsp_tcp setup with websdr

Goto websdr-base.js......change this code: function chatnewline(s) // called by updates fetched from the server { var o=document.getElementById('chatboxnew'); if (!o) return; if (s[0]=='-') { // remove line from chatbox var div=document.createElement('div'); div.innerHTML=s; s=div.innerHTML; var re=...
by ON5HB
Wed May 29, 2019 5:43 pm
Forum: Code Corner
Topic: rsp_tcp setup with websdr
Replies: 7
Views: 56931

Re: rsp_tcp setup with websdr

Where is the link to your websdr? I would love to have a look at it.

Also the chatbox has a problem with spammer, I made a spam-filter for it, if you want it, let me know then I send you the code.

Trust me, the websdr-spammer will find you as soon as you publish your receiver.
by ON5HB
Wed May 29, 2019 2:37 pm
Forum: Code Corner
Topic: rsp_tcp setup with websdr
Replies: 7
Views: 56931

Re: rsp_tcp setup with websdr

You need some different settings then I use. First of all, you need to compile the rsp_tcp and call it as such. Then call it like this from the websdr.cfg: ####################################################### # RSP1A 0-2 ####################################################### band RSP1A 0-2MHz de...
by ON5HB
Mon May 27, 2019 3:17 pm
Forum: SDR Antennas
Topic: New Sdrplay and antenna creation
Replies: 21
Views: 125158

Re: New Sdrplay and antenna creation

Hi Ken, You do not need to ground the antenna, it's just one way of doing it. The antenna described in the article is just a wire, as such it doesn't have a counter length. Grounding can provide that but also adding some length of counter-wire or a fence. Grounding can attract lightning and as such ...
by ON5HB
Mon May 27, 2019 3:04 pm
Forum: SDR Antennas
Topic: PA0RDT Antenna
Replies: 11
Views: 85889

Re: PA0RDT Antenna

I bought mine on ebay, this exact type: https://www.ebay.com/itm/MiniWhip-Active-Antenna-Assembled-in-Box-HF-LF-VLF-mini-whip-sdr-RX-portable/222469570201 And I fed it with cheap cable-tv coax, double shielded 75Ohm, works great BUT beware of electrical spikes, charges and rubbish nearby as it will ...
by ON5HB
Sat May 18, 2019 12:46 pm
Forum: SDRplay related
Topic: Lots of noise...no signal...new unit
Replies: 3
Views: 15532

Re: Lots of noise...no signal...new unit

Try setting it to Zero-IF or LowIF and set the gain to about 50%, see what happens.
by ON5HB
Fri May 17, 2019 4:53 pm
Forum: Code Corner
Topic: WSJT-X
Replies: 1
Views: 32746

Re: WSJT-X

Have looked for it too, didn't find any.
I wanted to use hamlib but no luck.
by ON5HB
Fri May 17, 2019 4:51 pm
Forum: Code Corner
Topic: Sample rate and buffering samples retrieved
Replies: 4
Views: 43721

Re: Sample rate and buffering samples retrieved

You're divider is off, as you can't simply divide by 11. Bit/samples/bytes etc work with a power of 2. So it's always a multitude of 2^x, that works the same when decimate. It decimates in the same power of 2, like 0, 2, 4, 8, 16, 32 and 64. All other decimates result it illegal call and turn off de...