5432: formatting

This commit is contained in:
architeuthis 2025-01-31 16:31:02 +01:00
parent 47ce969445
commit 4cb6226570

View File

@ -1,5 +1,5 @@
\input{preamble.tex}
\graphicspath{{images/5432}{images}}
\graphicspath{{images/5432}, {images}}
\title{5432 DAC Zotino}
\author{M-Labs Limited}
@ -30,6 +30,7 @@
\end{itemize}
\section{General Description}
The 5432 Zotino is a 4hp EEM module and part of the ARTIQ/Sinara family. It adds digital-analog conversion capabilities to carrier cards such as 1124 Kasli and 1125 Kasli-SoC.
It provides four groups of eight analog channels each, exposed by one HD68 connector. Each channel supports output voltage from -10 V to 10 V. All channels can be updated simultaneously. Channels can broken out to BNC, SMA or MCX by adding external 5518 BNC-IDC, 5528 SMA-IDC or 5538 MCX-IDC cards.
@ -229,6 +230,7 @@ Far-end crosstalk was measured using the following setup\repeatfootnote{zotino21
\codesection{5432 DAC Zotino}
\subsection{Setting output voltage}
The following example initializes the Zotino card, then emits 1.0 V, 2.0 V, 3.0 V and 4.0 V at channels 0, 1, 2, and 3 respectively. Voltages of all 4 channels are updated simultaneously with the use of \texttt{set\char`_dac()}.
\inputcolorboxminted{firstline=11,lastline=22}{examples/zotino.py}
@ -236,6 +238,7 @@ The following example initializes the Zotino card, then emits 1.0 V, 2.0 V, 3.0
\newpage
\subsection{Triangular wave}
Generates a triangular waveform at 10 Hz, 16 V peak-to-peak. Timing accuracy of the RTIO system can be demonstrated by the precision of the frequency.
Import \texttt{scipy.signal} and \texttt{numpy} modules to run this example.