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

Wrong channel order returned by Sequence.outputForAWGFile() #88

Open
FKMalina opened this issue Apr 19, 2018 · 0 comments
Open

Wrong channel order returned by Sequence.outputForAWGFile() #88

FKMalina opened this issue Apr 19, 2018 · 0 comments

Comments

@FKMalina
Copy link

BluePrints are assigned to channel depending on order in which they were added using addBluePrint, instead of channel numbers specified in addBluePrint.

Eg.

element = bb.Element()
element.addBluePrint(2, pulse2)
element.addBluePrint(1, pulse1)
seq = bb.Sequence()
seq.addElement(1, element)
...
seq.outputForAWGFile()
awg.make_send_and_load_awg_file(*awgfile[:])

will assign pulse2 to channel 1 and pulse1 to channel 2.

@FKMalina FKMalina changed the title Wrong channel order returned by Sequence.outputFotAWGFile() Wrong channel order returned by Sequence.outputForAWGFile() Apr 19, 2018
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