This commit is contained in:
2023-05-01 11:28:04 +02:00
parent 3a83f3cf34
commit abe3bcb19c
265 changed files with 28663 additions and 1295 deletions

View File

@@ -0,0 +1,10 @@
class StringChannel(RegisterBase):
def doRead(self):
return self.val if hasattr(self, 'val') else ""
def doWrite(self, val):
self.val = val
reg=StringChannel()
reg.initialize()
cas3 = CAS("TESTCAS:CH", reg, 'string')