Skip to content

Commit a3c67a5

Browse files
committed
added max_instructions to Pulseblaster_SP2_24_100_32k
1 parent 668ae5b commit a3c67a5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

PulseBlaster_SP2_24_100_32k.py

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ class PulseBlaster_SP2_24_100_32k(PulseBlaster_No_DDS):
2121
clock_limit = 5.0e6
2222
clock_resolution = 10e-9
2323
n_flags = 24
24+
25+
def __init__(self, *args, **kwargs):
26+
if 'max_instructions' not in kwargs:
27+
kwargs['max_instructions'] = 32000
28+
PulseBlaster_No_DDS.__init__(self, *args, **kwargs)
2429

2530

2631
@BLACS_tab

0 commit comments

Comments
 (0)