Skip to content

Commit

Permalink
[frontend.cpp] Test value to increase signal level
Browse files Browse the repository at this point in the history
  • Loading branch information
Ev0-BH committed May 2, 2024
1 parent 3783224 commit 08d07f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/dvb/frontend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1390,9 +1390,9 @@ void eDVBFrontend::calculateSignalQuality(int snr, int &signalquality, int &sign
{
ret = (int)(snr / 32.5);
}
else if (!strcmp(m_description, "AVL62X1"))
else if (!strcmp(m_description, "AVL62X1")) // Novaler Multibox Pro 4K/GB Trio 4K
{
ret = snr;
ret = (int)(snr / 32.5);
}
else if (!strcmp(m_description, "gService DVB-S2")) // SX88V2
{
Expand Down

0 comments on commit 08d07f2

Please sign in to comment.