├── .gitignore ├── Experiment_Outline.md ├── Pipfile ├── Pipfile.lock ├── README.md ├── Resources ├── sprint1_research.md └── src ├── gnuradio-receive-sinewave.grc ├── gnuradio-replay-data.grc ├── gnuradio-transmit-sinewave.grc ├── hackrf_sweep-collect-data.sh ├── hackrf_sweep-process-data.py ├── replay_data_fft.grc ├── top_block.py └── wifi_monitor.py /.gitignore: -------------------------------------------------------------------------------- 1 | filesystem 2 | *.swp 3 | .idea/ 4 | figures/ 5 | *.log 6 | src/top_block.py 7 | -------------------------------------------------------------------------------- /Experiment_Outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/Experiment_Outline.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/README.md -------------------------------------------------------------------------------- /Resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/Resources -------------------------------------------------------------------------------- /sprint1_research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/sprint1_research.md -------------------------------------------------------------------------------- /src/gnuradio-receive-sinewave.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/gnuradio-receive-sinewave.grc -------------------------------------------------------------------------------- /src/gnuradio-replay-data.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/gnuradio-replay-data.grc -------------------------------------------------------------------------------- /src/gnuradio-transmit-sinewave.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/gnuradio-transmit-sinewave.grc -------------------------------------------------------------------------------- /src/hackrf_sweep-collect-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/hackrf_sweep-collect-data.sh -------------------------------------------------------------------------------- /src/hackrf_sweep-process-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/hackrf_sweep-process-data.py -------------------------------------------------------------------------------- /src/replay_data_fft.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/replay_data_fft.grc -------------------------------------------------------------------------------- /src/top_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/top_block.py -------------------------------------------------------------------------------- /src/wifi_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tesorrells/RF-Drone-Detection/HEAD/src/wifi_monitor.py --------------------------------------------------------------------------------