TCP or UDP include RSSI or signal strength value? #324
-
I am looking at a system to evaluate ocean racing boats' AIS installations, some of which are terrible. I'd like to automagically collect signal strength data from a few stations. Will I be able to include RSSI in the stream that is sent out by UDP or TCP? I assume the -o 5 option is the one I want.... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
The signal level is displayed as screen output with -o 3 or -o 5 (but -o 3 is sufficient). If you want to send in the same format over UDP use: -u 127.0.0.1 5012 JSON on as TCP Client: -P 127.0.0.1 5012 JSON on and as TCP server: -S 5012 JSON on Btw it is technically the signal level (and not signal to noise or something) so best to run with a fixed gain and not auto gain setting. Does that help? |
Beta Was this translation helpful? Give feedback.
The signal level is displayed as screen output with -o 3 or -o 5 (but -o 3 is sufficient). If you want to send in the same format over UDP use:
-u 127.0.0.1 5012 JSON on
as TCP Client:
-P 127.0.0.1 5012 JSON on
and as TCP server:
-S 5012 JSON on
Btw it is technically the signal level (and not signal to noise or something) so best to run with a fixed gain and not auto gain setting.
Does that help?