Skip to content

Commit

Permalink
Fix minor typos in debug logging for opcode 0x28 (robotastic#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykava authored and EricTendian committed Feb 6, 2024
1 parent 2729722 commit 4b2921a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk-recorder/systems/p25_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ std::vector<TrunkMessage> P25Parser::decode_tsbk(boost::dynamic_bitset<> &tsbk,
message.source = ta;
message.talkgroup = ga;

BOOST_LOG_TRIVIAL(debug) << "tsbk2f\tUnit Group Affiliation\tSource ID: " << std::setw(7) << ta << "\tGroup Address: " << std::dec << ga << "\tAnouncement Goup: " << aga;
BOOST_LOG_TRIVIAL(debug) << "tsbk28\tUnit Group Affiliation\tSource ID: " << std::setw(7) << ta << "\tGroup Address: " << std::dec << ga << "\tAnnouncement Group: " << aga;
} else if (opcode == 0x29) { // Secondary Control Channel Broadcast - Explicit
unsigned long rfid = bitset_shift_mask(tsbk, 72, 0xff);
unsigned long stid = bitset_shift_mask(tsbk, 64, 0xff);
Expand Down

0 comments on commit 4b2921a

Please sign in to comment.