Skip to content

Commit

Permalink
lib: enable better UHF reception (>862MHz) for FC0013
Browse files Browse the repository at this point in the history
(cherry picked from commit 1dff8e0)
  • Loading branch information
merbanan authored and hayguen committed Mar 22, 2024
1 parent 1e3d4ab commit 35f0091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tuner_fc0013.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,11 @@ int fc0013_set_params(void *dev, uint32_t freq, uint32_t bandwidth)
if (ret)
goto exit;

/* disable UHF & enable GPS */
/* enable UHF & disable GPS */
ret = fc0013_readreg(dev, 0x14, &tmp);
if (ret)
goto exit;
ret = fc0013_writereg(dev, 0x14, (tmp & 0x1f) | 0x20);
ret = fc0013_writereg(dev, 0x14, (tmp & 0x1f) | 0x40);
if (ret)
goto exit;
}
Expand Down

0 comments on commit 35f0091

Please sign in to comment.