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

Remove unused crc-check option on dump1090 and faup1090 #201

Merged
merged 2 commits into from
Oct 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Still accept --no-crc-check option (but ignore/warn about it)
  • Loading branch information
mutability committed Oct 6, 2022
commit 8f994f94b4a4ced083fb4564a25c3f63afec76dd
2 changes: 2 additions & 0 deletions dump1090.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,8 @@ int main(int argc, char **argv) {
Modes.nfix_crc = 0;
} else if (!strcmp(argv[j],"--no-fix-df")) {
Modes.fix_df = 0;
} else if (!strcmp(argv[j],"--no-crc-check")) {
fprintf(stderr, "warning: --no-crc-check no longer supported, option ignored (please raise an issue on github if you have a usecase that needs this)\n");
} else if (!strcmp(argv[j],"--phase-enhance")) {
// Ignored, always enabled
} else if (!strcmp(argv[j],"--raw")) {
Expand Down