From e4d73c03020cc01619d573d5d9bece8d04850678 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 23 Dec 2015 17:25:31 +0800 Subject: [PATCH] artiq/coredevice/dds: fix dds_set signature --- artiq/coredevice/dds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/coredevice/dds.py b/artiq/coredevice/dds.py index 8350ee3d2..419bb442b 100644 --- a/artiq/coredevice/dds.py +++ b/artiq/coredevice/dds.py @@ -24,7 +24,7 @@ def dds_batch_exit() -> TNone: @syscall def dds_set(time_mu: TInt64, channel: TInt32, ftw: TInt32, - pow: TInt32, phase_mode: TInt32) -> TNone: + pow: TInt32, phase_mode: TInt32, amplitude: TInt32) -> TNone: raise NotImplementedError("syscall not simulated")