Skip to content

Commit

Permalink
chore: switch line D readout from octave5 to octave6
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 committed Dec 20, 2024
1 parent d21e5a3 commit 8a4094b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions qw11q/parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
"gain": 0
}
},
"con6": {
"con8": {
"i1": {
"gain": 10
},
Expand Down Expand Up @@ -326,8 +326,11 @@
"gain": 0
},
"o1": {
"lo_frequency": 4900000000,
"lo_frequency": 7450000000,
"gain": 0
},
"i1": {
"lo_frequency": 7450000000
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions qw11q/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ def create():
# Readout
channels |= Channel(name="readoutA", port=octaves[4].ports(1))
channels |= Channel(name="readoutB", port=octaves[2].ports(1))
channels |= Channel(name="readoutD", port=octaves[5].ports(1))
channels |= Channel(name="readoutD", port=octaves[6].ports(1))
# Feedback
channels |= Channel(name="feedbackA", port=octaves[4].ports(1, output=False))
channels |= Channel(name="feedbackB", port=octaves[2].ports(1, output=False))
channels |= Channel(name="feedbackD", port=octaves[5].ports(1, output=False))
channels |= Channel(name="feedbackD", port=octaves[6].ports(1, output=False))
# TWPA
channels |= Channel(name="twpaB", port=None)
channels["twpaB"].local_oscillator = twpa_b
Expand Down

0 comments on commit 8a4094b

Please sign in to comment.