Skip to content
Snippets Groups Projects
Commit e1c1bde3 authored by Martin Teichmann's avatar Martin Teichmann
Browse files

always have a current_data in a sync group

parent e46f9331
No related branches found
No related tags found
No related merge requests found
Pipeline #97693 failed
......@@ -350,6 +350,8 @@ class FastEtherCat(SimpleEtherCat):
class SyncGroupBase:
missed_counter = 0
current_data = None
def __init__(self, ec, devices, **kwargs):
super().__init__(**kwargs)
self.ec = ec
......@@ -419,8 +421,6 @@ class SyncGroup(SyncGroupBase):
class FastSyncGroup(SyncGroupBase, XDP):
license = "GPL"
current_data = None
properties = ArrayMap()
def __init__(self, ec, devices, **kwargs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment