Skip to content

Commit

Permalink
sim/devices/core: adapt to _ARTIQEmbeddedInfo
Browse files Browse the repository at this point in the history
sbourdeauducq committed Dec 27, 2015
1 parent b5253e1 commit bea1182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/sim/devices.py
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ def __init__(self, dmgr):

def run(self, k_function, k_args, k_kwargs):
self._level += 1
r = k_function(*k_args, **k_kwargs)
r = k_function.artiq_embedded.function(*k_args, **k_kwargs)
self._level -= 1
if self._level == 0:
print(time.manager.format_timeline())

0 comments on commit bea1182

Please sign in to comment.