We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While working with AWG5208 and using the example notebook from broadbean as the reference, using outputForSEQXFile method of the Sequence object together with makeSEQXFile method of the AWG driver like below resulted in an error 1331 on the AWG device upon loading the successfully created and transmitted SEQX file:
... seqx_args = sequence.outputForSEQXFile() seqx_file = awg.makeSEQXFile(**seqx_args) ...
As @WilliamHPNielsen suggested, forging the sequence should be used instead (and it indeed worked):
... forged_sequnce = sequence.forge() seqx_file = awg.make_SEQX_from_forged_sequence(forged_sequence) ...
ToDo:
forge
@WilliamHPNielsen @sohailc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While working with AWG5208 and using the example notebook from broadbean as the reference, using outputForSEQXFile method of the Sequence object together with makeSEQXFile method of the AWG driver like below resulted in an error 1331 on the AWG device upon loading the successfully created and transmitted SEQX file:
As @WilliamHPNielsen suggested, forging the sequence should be used instead (and it indeed worked):
ToDo:
forge
insteadforge
@WilliamHPNielsen @sohailc
The text was updated successfully, but these errors were encountered: