Everything renamed dump1090 (was mode1090).
This commit is contained in:
parent
c059d01feb
commit
d974a4db90
14
Makefile
14
Makefile
|
@ -1,15 +1,15 @@
|
||||||
CFLAGS=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
|
CFLAGS=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
|
||||||
LIBS=`pkg-config --libs librtlsdr` -lpthread -lm
|
LIBS=`pkg-config --libs librtlsdr` -lpthread -lm
|
||||||
CC=gcc
|
CC=gcc
|
||||||
PROGNAME=mode1090
|
PROGNAME=dump1090
|
||||||
|
|
||||||
all: mode1090
|
all: dump1090
|
||||||
|
|
||||||
mode1090.o: mode1090.c
|
dump1090.o: dump1090.c
|
||||||
$(CC) $(CFLAGS) mode1090.c -c -o mode1090.o
|
$(CC) $(CFLAGS) dump1090.c -c -o dump1090.o
|
||||||
|
|
||||||
mode1090: mode1090.o
|
dump1090: dump1090.o
|
||||||
$(CC) -g -o mode1090 mode1090.o $(LIBS)
|
$(CC) -g -o dump1090 dump1090.o $(LIBS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o mode1090
|
rm -f *.o dump1090
|
||||||
|
|
4
README
4
README
|
@ -179,7 +179,7 @@ are lower than the specified <level> for more than 32 samples.
|
||||||
|
|
||||||
Use it like this:
|
Use it like this:
|
||||||
|
|
||||||
cat big.bin | ./mode1090 --snip 25 > small.bin
|
cat big.bin | ./dump1090 --snip 25 > small.bin
|
||||||
|
|
||||||
I used it in order to create a small test file to include inside this
|
I used it in order to create a small test file to include inside this
|
||||||
program source code distribution.
|
program source code distribution.
|
||||||
|
@ -187,7 +187,7 @@ program source code distribution.
|
||||||
Contributing
|
Contributing
|
||||||
---
|
---
|
||||||
|
|
||||||
Mode1090 was written during some free time during xmas 2012, it is an hobby
|
Dump1090 was written during some free time during xmas 2012, it is an hobby
|
||||||
project so I'll be able to address issues and improve it only during
|
project so I'll be able to address issues and improve it only during
|
||||||
free time, however you are incouraged to send pull requests in order to
|
free time, however you are incouraged to send pull requests in order to
|
||||||
improve the program. A good starting point can be the TODO list included in
|
improve the program. A good starting point can be the TODO list included in
|
||||||
|
|
Loading…
Reference in a new issue