Skip to content

Commit

Permalink
0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
windytan committed Dec 8, 2017
1 parent 12fdb26 commit 77de7ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# redsea changelog

## 0.14.1 (xxxx-xx-xx)
## 0.14.1 (2017-12-08)

* Don't consider UTC+14 invalid (it's the time zone in Kiribati)
* Use JSON object `callsign_uncertain` for call signs of stations whose
PI code begins with a 1
* Fix syntax errors in schema

## 0.14.0 (2017-11-14)

Expand Down
8 changes: 4 additions & 4 deletions src/groups.cc
Original file line number Diff line number Diff line change
Expand Up @@ -539,17 +539,17 @@ void Station::DecodeType3A(const Group& group) {
case 0xCD46:
case 0xCD47:
#ifdef ENABLE_TMC
tmc_.SystemGroup(group.block(BLOCK3), &json_);
tmc_.SystemGroup(oda_message, &json_);
#else
json_["debug"].append("redsea compiled without TMC support");
#endif
break;

case 0x4BD7:
has_radiotext_plus_ = true;
radiotext_plus_cb_ = Bits(group.block(BLOCK3), 12, 1);
radiotext_plus_scb_ = Bits(group.block(BLOCK3), 8, 4);
radiotext_plus_template_num_ = Bits(group.block(BLOCK3), 0, 8);
radiotext_plus_cb_ = Bits(oda_message, 12, 1);
radiotext_plus_scb_ = Bits(oda_message, 8, 4);
radiotext_plus_template_num_ = Bits(oda_message, 0, 8);
break;

default:
Expand Down

0 comments on commit 77de7ea

Please sign in to comment.