readsb-protobuf
readsb-protobuf copied to clipboard
Readsb is a Mode-S/ADSB/TIS decoder for RTLSDR, BladeRF, Modes-Beast and GNS5894 devices. Future development version with protocol buffer storage.
More conversation over at [a Docker container that uses this tool](https://github.com/sdr-enthusiasts/docker-readsb-protobuf/issues/82). The main symptom is that the UI loads but there's a script load failure due to the wrong URL...
When I got the prerequisites, dh-systemd was not available (debian 12.5, Bookworm, Linux 6.1.0-18-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.76-1 (2024-02-01) x86_64 GNU/Linux) I looked up dh-systemd over here https://packages.debian.org/buster/dh-systemd Package:...
Hello, I am running readsb in net_mode and feeding with about 2000 aircraft but I got message ICAO hash table full, increase ICAO_FILTER_SIZE, which show up to 4096 at the...
On systems where ncurses is split in ncurses and tinfo, the following compile error occurs: ``` cc -g -o viewadsb readsb.pb-c.o geomag.o viewadsb.o anet.o interactive.o mode_ac.o mode_s.o comm_b.o net_io.o crc.o...
Due to stricter defaults in GCC 14, readsb compile fails with the following errors in readsbrrd.c: ``` readsbrrd.c: In function ‘rrd_create_files’: readsbrrd.c:219:46: error: passing argument 2 of ‘rrd_create’ from incompatible...
* readsbrrd: cast timespec.tv_sec addend to time_t * readsbrrd: fix misplaced widening cast * compat: include byteswap.h instead of endian.h The second commit is not a musl fix, but the...
Hello, I am running this from a docker container on an unraid server and when I restart the container I am loosing the performance graph history. Is there any way...
… due to building length N+1 strings (i.e. `"ABCD"`, that's 5 bytes, due to the null terminator), and using them as length N chararrays (i.e., `char tooshort[4] = "ABCD";`). I...