Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust RX LO frequency for better yield. #618

Merged
Merged
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
4 changes: 2 additions & 2 deletions examples/phaser/phaser_prod_tst.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
phase_cal_limits = [90.0, 90.0, 90.0, 120.0, 90.0, 90.0, 90.0]

# Set up RF / IF / LO frequencies
rx_lo = 2.2e9
rx_lo = 1.9e9
SignalFreq = 10.2e9

use_tx = True # Use on board TX w/ cabled antenna, NOT external HB100
Expand Down Expand Up @@ -232,7 +232,7 @@
-88
) # this is a negative number between 0 and -88
my_sdr.tx_hardwaregain_chan1 = int(-3)
my_sdr.tx_lo = int(2.2e9)
my_sdr.tx_lo = int(rx_lo)
else:
# To disable rx, set attenuation to a high value and set frequency far from rx.
my_sdr.tx_hardwaregain_chan0 = int(
Expand Down
Loading