-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Written README. Reordered code. Added exceptions.
- Loading branch information
Luca Mattii
committed
May 6, 2019
1 parent
f9ef8f1
commit ffbd577
Showing
3 changed files
with
59 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
# gqrx-fscanner | ||
Script that drives gqrx via telnet to implement frequency scanning | ||
> Script that drives gqrx via telnet to implement frequency scanning. | ||
# Setup | ||
1) **Configure** *Allowed hosts* and *Port* in gqrx from Tools>Remote control settings | ||
2) **Enable** remote control by checking Tools>Remote control | ||
3) **Change** `HOST` and `PORT` in the code to match your configuration (default values should work) | ||
|
||
# Usage | ||
## Scan frequencies from file | ||
`./gqrx-fscanner file.txt` | ||
|
||
`file.txt` must contain a list of integer frequencies in Hz, one per line. | ||
|
||
## Scan frequencies from gqrx bookmarks | ||
`./gqrx-fscanner 145000000 148000000` | ||
|
||
Scan bookmarked frequencies between 145MHz and 148MHz. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
- more checks on operations: read from file, connect to telnet, etc.. | ||
- add connectionreset exception | ||
- use wait time parameter integrated in telnet instead of manual sleep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters