Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo & git>https repo link #71

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "ft8_lib"]
path = ft8_lib
url = git://github.com/kgoba/ft8_lib
url = https://github.com/kgoba/ft8_lib.git
4 changes: 2 additions & 2 deletions rtlsdr_ft8d.c
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ int32_t decoderSelfTest() {
void usage(FILE *stream, int32_t status) {
fprintf(stream,
"rtlsdr_ft8d, a simple FT8 daemon for RTL receivers\n\n"
"Use:\rtlsdr_ft8d -f frequency -c callsign -l locator [options]\n"
"Use: rtlsdr_ft8d -f frequency -c callsign -l locator [options]\n"
"\t-f dial frequency [(,k,M) Hz] or band string\n"
"\t If band string is used, the default dial frequency will used.\n"
"\t Bands: 160m 80m 60m 40m 30m 20m 17m 15m 12m 10m 6m 4m 2m 1m25 70cm 23cm\n"
Expand All @@ -988,7 +988,7 @@ void usage(FILE *stream, int32_t status) {
"\t-o frequency offset (default: 0)\n"
"\t-p crystal correction factor (ppm) (default: 0)\n"
"\t-u upconverter (default: 0, example: 125M)\n"
"\t-d direct dampling [0,1,2] (default: 0, 1 for I input, 2 for Q input)\n"
"\t-d direct sampling [0,1,2] (default: 0, 1 for I input, 2 for Q input)\n"
"\t-n max iterations (default: 0 = infinite loop)\n"
"\t-i device index (in case of multiple receivers, default: 0)\n"
"Debugging options:\n"
Expand Down
Loading