projecthorus / radiosonde_auto_rx

Automatically Track Radiosonde Launches using RTLSDR
GNU General Public License v3.0
491 stars 124 forks source link

Autorx can't find spyserver #780

Closed EricFROL closed 1 year ago

EricFROL commented 1 year ago

So I bought an Airspy Mini, and I'd like to use it for radiosondes. I set up the SpyServer, and it's working, since I'm able to connect to it from another computer and operate the Airspy Mini. But Autorx can't detect it. Here's the log of autorx:

2023-06-20 13:16:00,234 INFO:Reading configuration file...
2023-06-20 13:16:00,250 WARNING:Config - Clipped Sondehub update rate to lower limit of 10 seconds
2023-06-20 13:16:00,252 WARNING:Please do not use APRS ports which forward data out to the wider APRS-IS network and cause network congestion. Switching to default port of 14590. If you believe this to be in error, please raise an issue at https://github.com/projecthorus/radiosonde_auto_rx/issues
2023-06-20 13:16:00,254 CRITICAL:Could not find ss_iq binary! This may need to be compiled.
2023-06-20 13:16:00,255 CRITICAL:Config - Could not contact SpyServer localhost:5556. Exiting.
2023-06-20 13:16:00,256 CRITICAL:Error in configuration file! Exiting...

Here's the conf of autorx (just the spyserver conf):

...
sdr_hostname = localhost
sdr_port = 5556
...

Here's the conf of SpyServer (just the bind address confs):

...
bind_host = localhost
bind_port = 5556
...

What should I do? Ty in advance.

darksidelemm commented 1 year ago

The error you are looking for this this one:

2023-06-20 13:16:00,254 CRITICAL:Could not find ss_iq binary! This may need to be compiled.

There is information on this here: https://github.com/projecthorus/radiosonde_auto_rx/wiki/Network-SDR-Decoding-Instructions#spyserver-client

... or use the Docker image, which has this all baked in already: https://github.com/projecthorus/radiosonde_auto_rx/wiki/Docker

EricFROL commented 1 year ago

Solved by compiling ss_iq. Thank you!