Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified FrontendInfo-dreamos.tar.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ def __init__(self, type):

def getAGC(self):
agc = self.source.agc
if agc:
# Si2166D/Si2169D frontends report a small bogus non-zero AGC
# value (seen: 89-124) instead of None, ignore it and fall
# through to the SNR-based estimate below
if agc and agc > 255:
return agc

# Some frontends do not expose signal strength through either
Expand Down