├── LICENSE ├── Makefile.airspy ├── Makefile.rtl ├── README.md ├── airspy.c ├── rtl.c ├── test.c ├── vor.c ├── vortrack.c └── vortrack.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.airspy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/Makefile.airspy -------------------------------------------------------------------------------- /Makefile.rtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/Makefile.rtl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/README.md -------------------------------------------------------------------------------- /airspy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/airspy.c -------------------------------------------------------------------------------- /rtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/rtl.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/test.c -------------------------------------------------------------------------------- /vor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/vor.c -------------------------------------------------------------------------------- /vortrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLeconte/vortrack/HEAD/vortrack.c -------------------------------------------------------------------------------- /vortrack.h: -------------------------------------------------------------------------------- 1 | #define FSINT 50000 2 | 3 | extern int freq; 4 | 5 | 6 | --------------------------------------------------------------------------------