Skip to content

Commit

Permalink
Merge pull request #910 from darksidelemm/testing
Browse files Browse the repository at this point in the history
Change iMet54 subtype names
  • Loading branch information
darksidelemm authored Sep 21, 2024
2 parents b597df3 + 31c8082 commit a78d3b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion auto_rx/autorx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus.
# PATCH - Small changes, or minor feature additions.

__version__ = "1.7.5-beta5"
__version__ = "1.7.5-beta6"

# Global Variables

Expand Down
2 changes: 1 addition & 1 deletion demod/mod/imet54mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ static int print_position(gpx_t *gpx, int len, int ecc_frm, int ecc_tlm, int ecc
// prnGPS,prnTPU
if (gpx->option.jsn && frm_ok && (crc_ok || std_ok) && (gpx->status&0x30)==0x30) {
char *ver_jsn = NULL;
char *subtype = (rs_type == 54) ? "IMET54" : "IMET50";
char *subtype = (rs_type == 54) ? "iMet-54" : "iMet-50";
unsigned long count_day = (unsigned long)(gpx->std*3600 + gpx->min*60 + gpx->sek+0.5); // (gpx->timems/1e3+0.5) has gaps
fprintf(stdout, "{ \"type\": \"%s\"", "IMET5");
fprintf(stdout, ", \"frame\": %lu", count_day);
Expand Down

0 comments on commit a78d3b1

Please sign in to comment.