Compare commits

...

3 commits

Author SHA1 Message Date
Stephan I. Böttcher
53c8767dea armlib.ifc.Sync(on=True) 2025-10-06 17:15:12 +02:00
Stephan I. Böttcher
3e53d6695e irena: fix irenarc exception 2025-10-06 17:14:21 +02:00
Stephan I. Böttcher
2ae7187eeb flash_IRENA: CRONGD4 2025-10-06 16:42:55 +02:00
3 changed files with 10 additions and 2 deletions

View file

@ -198,6 +198,13 @@ class irena_ifc(object):
def Flush(self):
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):
if self._data:
return self._data.Status(verbose)

2
flash_IRENA/CRONGD4.RC Normal file
View file

@ -0,0 +1,2 @@
@s/if !ssp_dma: s/exit
@nm/count/clear/float

View file

@ -191,5 +191,4 @@ if ifc.is_a("USB"):
try:
armlib._exec_file("irenarc.py", globals())
except IOError as e:
sys.stderr.write(e)
sys.stderr.write(repr(e))