aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: 8da42e63184c69bcc55cfd418efa5454a1625832 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
	gr-scan - A GNU Radio signal scanner
	Copyright (C) 2015 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
	Copyright (C) 2012  Nicholas Tomlinson
	
	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.
	
	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.
	
	You should have received a copy of the GNU General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/


#include <cstdio>

#include "arguments.hpp"
#include "topblock.hpp"

int main(int argc, char **argv)
{
	Arguments arguments(argc, argv);
	
	TopBlock top_block(arguments.get_centre_freq_1(),
			   arguments.get_centre_freq_2(),
			   arguments.get_sample_rate(),
			   arguments.get_fft_width(),
			   arguments.get_bandwidth1(),
			   arguments.get_bandwidth2(),
			   arguments.get_step(),
			   arguments.get_avg_size(),
			   arguments.get_spread(),
			   arguments.get_threshold(),
			   arguments.get_time(),
			   arguments.get_outcsv(),
			   arguments.get_device_args());
	top_block.run();
	return 0; //actually, we never get here because of the rude way in which we end the scan
}