Skip to content

Commit 02c15b5

Browse files
authored
Merge pull request #21 from neural75/cleanups
Cleanups
2 parents 3602ba9 + 54892a5 commit 02c15b5

File tree

5 files changed

+146
-67
lines changed

5 files changed

+146
-67
lines changed

.vscode/c_cpp_properties.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
},
4747
"compilerPath": "/usr/bin/gcc",
4848
"cStandard": "c11",
49-
"cppStandard": "c++17"
49+
"cppStandard": "c++17",
50+
"configurationProvider": "ms-vscode.cmake-tools"
5051
},
5152
{
5253
"name": "Win32",

.vscode/launch.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@
55
"name": "(gdb) Launch",
66
"type": "cppdbg",
77
"request": "launch",
8-
"program": "${workspaceRoot}/bin/gqrx-scanner",
8+
"program": "${workspaceRoot}/bin/Debug/gqrx-scanner",
99
"args":
1010
[
11-
"-y", "1"
11+
"-y", "1",
1212
//"-h", "localhost",
1313
//"-p", "7356",
1414
//"--mode", "bookmark",
1515
//"-f 429000000",
16-
//"--min", "430000000",
17-
//"--max", "432000000",
16+
"--min", "460000000",
17+
"--max", "463000000",
18+
"-vvv",
1819
//"--tags", "\"ponti\"",
1920
//"-d", "2"
2021
],
@@ -27,7 +28,7 @@
2728
{
2829
"description": "Enable pretty-printing for gdb",
2930
"text": "-enable-pretty-printing",
30-
"ignoreFailures": true
31+
"ignoreFailures": false
3132
}
3233
]
3334
}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.6)
1+
cmake_minimum_required(VERSION 2.8.12)
22

33
project(gqrx-scanner)
44
# Set the output folder where your program will be created

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ gqrx-scanner [-h|--host <host>] [-p|--port <port>] [-m|--mode <sweep|bookmark>]
5858
-y --date Date Format, default is 0.
5959
0 = mm-dd-yy
6060
1 = dd-mm-yy
61-
2 = yy-mm-dd
62-
This feature has not been implemented yet.
6361
6462
-q, --squelch_delta <dB> If set creates bottom squelch just
6563
for listening. It may reduce unnecessary squelch audio supress.

0 commit comments

Comments
 (0)