Skip to content

Commit

Permalink
Merge pull request #21 from neural75/cleanups
Browse files Browse the repository at this point in the history
Cleanups
  • Loading branch information
neural75 authored Jul 16, 2022
2 parents 3602ba9 + 54892a5 commit 02c15b5
Show file tree
Hide file tree
Showing 5 changed files with 146 additions and 67 deletions.
3 changes: 2 additions & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
},
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17"
"cppStandard": "c++17",
"configurationProvider": "ms-vscode.cmake-tools"
},
{
"name": "Win32",
Expand Down
11 changes: 6 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/bin/gqrx-scanner",
"program": "${workspaceRoot}/bin/Debug/gqrx-scanner",
"args":
[
"-y", "1"
"-y", "1",
//"-h", "localhost",
//"-p", "7356",
//"--mode", "bookmark",
//"-f 429000000",
//"--min", "430000000",
//"--max", "432000000",
"--min", "460000000",
"--max", "463000000",
"-vvv",
//"--tags", "\"ponti\"",
//"-d", "2"
],
Expand All @@ -27,7 +28,7 @@
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
"ignoreFailures": false
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.6)
cmake_minimum_required(VERSION 2.8.12)

project(gqrx-scanner)
# Set the output folder where your program will be created
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ gqrx-scanner [-h|--host <host>] [-p|--port <port>] [-m|--mode <sweep|bookmark>]
-y --date Date Format, default is 0.
0 = mm-dd-yy
1 = dd-mm-yy
2 = yy-mm-dd
This feature has not been implemented yet.
-q, --squelch_delta <dB> If set creates bottom squelch just
for listening. It may reduce unnecessary squelch audio supress.
Expand Down
Loading

0 comments on commit 02c15b5

Please sign in to comment.