Hello,
I am trying to get a RF out of the Phaser Upconverter board, specifically, I believe I have the "Sinara 4624 AWG "Phaser" upconverter variant.
Do the leds indicate whether or not they are on? Is it correct that if the green led lights up, its on and it indicates "input", and if they do not light up, its off? Currently on the board that I have, just the green led on the ADC IN0 and ADC IN1 is on, but for the RF0 and RF1 ports, none of the leds are on. Does this mean that I won't get an RF out of RF0 or RF1?
Here is the code I have to get an RF out of RF0. I have the RF0 port connected to an oscilloscope but all I get is noise/not the correct output.
Thanks
from artiq.experiment import *
class Phaser(EnvExperiment):
def build(self):
self.setattr_device("core")
self.setattr_device("phaser0")
@kernel
def run(self):
self.core.reset()
self.core.break_realtime()
self.phaser0.channel[0].oscillator[0].set_frequency(200 * MHz)
self.phaser0.channel[0].oscillator[0].set_amplitude_phase(amplitude = 0.18)