bistromath / gr-air-modes

Gnuradio Mode-S/ADS-B radio
This project implements a Mode S receiver for the Gnuradio software-defined radio project. It is designed to receive Mode S transmissions from aircraft and decode them to a human-readable format, including ADS-B information messages such as position and a
GNU General Public License v3.0
443 stars 126 forks source link

using -t options, receiving nothing #99

Closed hawkingyy closed 7 years ago

hawkingyy commented 7 years ago

It is said -t will Open a TCP server on this port to publish reports, when I use socket client to receive data, but nothing received. When I use SBS-1, it can receive data. here is the python code of my client import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(("127.0.0.1", 9988)) while 1: data = s.recv(1024) print data

hawkingyy commented 7 years ago

How can I use socket to receive tcp data when I'm using modes_rx -t 9988, please? @bistromath