Skip to content

Commit

Permalink
Remove annoying RS decoder failure log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
g4klx committed Sep 29, 2016
1 parent c0ac75b commit 897d8c7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions P25Data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,8 @@ bool CP25Data::decodeLDU1(const unsigned char* data)
decodeLDUHamming(raw, rs + 15U);

bool ret = m_rs241213.decode(rs);
if (!ret) {
LogDebug("P25, uncorrectable errors in the RS(24,12,13) code");
if (!ret)
return false;
}

switch (m_lcf) {
case P25_LCF_GROUP:
Expand Down

0 comments on commit 897d8c7

Please sign in to comment.