Compare commits
3 commits
98936fcad7
...
53c8767dea
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
53c8767dea | ||
|
|
3e53d6695e | ||
|
|
2ae7187eeb |
3 changed files with 10 additions and 2 deletions
|
|
@ -198,6 +198,13 @@ class irena_ifc(object):
|
||||||
def Flush(self):
|
def Flush(self):
|
||||||
self._data.Flush()
|
self._data.Flush()
|
||||||
|
|
||||||
|
def Sync(self, on=True):
|
||||||
|
if not self._data:
|
||||||
|
self._log("no data thread")
|
||||||
|
return
|
||||||
|
self._log(f"data.Sync: {self._data.Sync} → {on}")
|
||||||
|
self._data.Sync = on
|
||||||
|
|
||||||
def Status(self, verbose=9):
|
def Status(self, verbose=9):
|
||||||
if self._data:
|
if self._data:
|
||||||
return self._data.Status(verbose)
|
return self._data.Status(verbose)
|
||||||
|
|
|
||||||
2
flash_IRENA/CRONGD4.RC
Normal file
2
flash_IRENA/CRONGD4.RC
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
@s/if !ssp_dma: s/exit
|
||||||
|
@nm/count/clear/float
|
||||||
3
irena.py
3
irena.py
|
|
@ -191,5 +191,4 @@ if ifc.is_a("USB"):
|
||||||
try:
|
try:
|
||||||
armlib._exec_file("irenarc.py", globals())
|
armlib._exec_file("irenarc.py", globals())
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
sys.stderr.write(e)
|
sys.stderr.write(repr(e))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue