forked from M-Labs/artiq
artiq_run: fix ELF running
This commit is contained in:
parent
3c6a4b81a3
commit
d14a31f443
|
@ -26,7 +26,7 @@ class ELFRunner(EnvExperiment):
|
||||||
def run(self):
|
def run(self):
|
||||||
with open(self.file, "rb") as f:
|
with open(self.file, "rb") as f:
|
||||||
self.core.comm.load(f.read())
|
self.core.comm.load(f.read())
|
||||||
self.core.comm.run("run", False)
|
self.core.comm.run("run")
|
||||||
self.core.comm.serve(dict(), dict())
|
self.core.comm.serve(dict(), dict())
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue