We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The -nmea parameter correspond to the rtcm flow The -rtcm parameter corresponds to the log flow The -log parameter corresponds to the nmea flow
The paths parameter ordering is not coherent between https://github.com/tomojitakasu/PocketSDR/blob/master/app/pocket_trk/pocket_trk.c :
else if (!strcmp(argv[i], "-log") && i + 1 < argc) { paths[0] = argv[++i]; } else if (!strcmp(argv[i], "-nmea") && i + 1 < argc) { paths[1] = argv[++i]; } else if (!strcmp(argv[i], "-rtcm") && i + 1 < argc) { paths[2] = argv[++i]; } else if (!strcmp(argv[i], "-raw") && i + 1 < argc) { paths[3] = argv[++i]; }
and https://github.com/tomojitakasu/PocketSDR/blob/master/src/sdr_rcv.c
// paths (I) output stream paths ("": no output) // paths[0]: NMEA PVT solutions stream // paths[1]: RTCM3 OBS and NAV data stream // paths[2]: log stream // paths[3]: IF data log stream
The text was updated successfully, but these errors were encountered:
tomojitakasu
No branches or pull requests
The -nmea parameter correspond to the rtcm flow
The -rtcm parameter corresponds to the log flow
The -log parameter corresponds to the nmea flow
The paths parameter ordering is not coherent between https://github.com/tomojitakasu/PocketSDR/blob/master/app/pocket_trk/pocket_trk.c :
and https://github.com/tomojitakasu/PocketSDR/blob/master/src/sdr_rcv.c
// paths (I) output stream paths ("": no output)
// paths[0]: NMEA PVT solutions stream
// paths[1]: RTCM3 OBS and NAV data stream
// paths[2]: log stream
// paths[3]: IF data log stream
The text was updated successfully, but these errors were encountered: