Skip to content

Commit b32217c

Browse files
committedMar 9, 2016
coredevice: fix _DDSGeneric __init__ args
1 parent 3f8e431 commit b32217c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎artiq/coredevice/dds.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class _DDSGeneric:
8282
:param bus: name of the DDS bus device that this DDS is connected to.
8383
:param channel: channel number of the DDS device to control.
8484
"""
85-
def __init__(self, dmgr, sysclk, bus_channel, channel, core_dds_device="core_dds"):
85+
def __init__(self, dmgr, bus_channel, channel, core_dds_device="core_dds"):
8686
self.core_dds = dmgr.get(core_dds_device)
8787
self.core = self.core_dds.core
8888
self.bus_channel = bus_channel

0 commit comments

Comments
 (0)
Please sign in to comment.