Skip to content

Commit

Permalink
coredevice: fix _DDSGeneric __init__ args
Browse files Browse the repository at this point in the history
jordens committed Mar 9, 2016
1 parent 3f8e431 commit b32217c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/coredevice/dds.py
Original file line number Diff line number Diff line change
@@ -82,7 +82,7 @@ class _DDSGeneric:
:param bus: name of the DDS bus device that this DDS is connected to.
:param channel: channel number of the DDS device to control.
"""
def __init__(self, dmgr, sysclk, bus_channel, channel, core_dds_device="core_dds"):
def __init__(self, dmgr, bus_channel, channel, core_dds_device="core_dds"):
self.core_dds = dmgr.get(core_dds_device)
self.core = self.core_dds.core
self.bus_channel = bus_channel

0 comments on commit b32217c

Please sign in to comment.