From da7058d4420d4480dfc09986c6997b03858177e8 Mon Sep 17 00:00:00 2001 From: occheung Date: Wed, 1 Dec 2021 12:04:38 +0800 Subject: [PATCH] 4410: include asf, pow param in example --- 4410.tex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/4410.tex b/4410.tex index 9f3772b..11bb11f 100644 --- a/4410.tex +++ b/4410.tex @@ -312,6 +312,7 @@ The full documentation for the ARTIQ software and gateware is available at \url{ % Timing accuracy in the examples below is well under 1 nanosecond thanks to the ARTIQ RTIO system. \subsection{10 MHz Sinusoidal Wave} +Generate a 10MHz sinusoid from RF0 with full scale amplitude and 0.25 turns phase, attenuated by 6 dB. Both the CPLD and the DDS channels should be initialized. \begin{minted}{python} @@ -322,7 +323,7 @@ def run(self): self.dds0.init() self.dds0.cfg_sw(True) self.dds0.set_att(6.) - self.dds0.set(10*MHz) + self.dds0.set(10*MHz, amplitude=1.0, phase=0.25) \end{minted} If the synchronization feature of AD9910 was enabled, RF signal across different channels of the same Urukul can be synchronized.