mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
Filter out abcdef STD-C messages
This commit is contained in:
parent
2234b4533c
commit
be201d2bbd
1 changed files with 4 additions and 2 deletions
|
|
@ -94,8 +94,10 @@ namespace inmarsat
|
|||
|
||||
if (msg["pkt_id"].get<int>() == 0xAA)
|
||||
{
|
||||
logger->info("Message : \n" + msg["message"].get<std::string>());
|
||||
msg_parser.push_message(msg);
|
||||
std::string m = msg["message"].get<std::string>();
|
||||
logger->info("Message : \n" + m);
|
||||
if (m != "abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ-!") // Remove those periodic ones
|
||||
msg_parser.push_message(msg);
|
||||
}
|
||||
else if (msg["pkt_id"].get<int>() == 0xb1)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue