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

Deprecate outputSEQXfile method (use forge instead) #91

Open
2 tasks
astafan8 opened this issue Jun 11, 2018 · 0 comments
Open
2 tasks

Deprecate outputSEQXfile method (use forge instead) #91

astafan8 opened this issue Jun 11, 2018 · 0 comments

Comments

@astafan8
Copy link
Contributor

astafan8 commented Jun 11, 2018

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:

@WilliamHPNielsen @sohailc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant