X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=appx%2Fmtask_aux.tex;h=220053ae38823473947ab203ee788a09106e9a0d;hb=5702796e5885e85b9e8dcc0d5160dccb9386b05f;hp=455360aeb0f58446a7d41b9fe86c6232b49d31ea;hpb=658c18356eecd7b43b27b5ee450db4d12a985834;p=phd-thesis.git diff --git a/appx/mtask_aux.tex b/appx/mtask_aux.tex index 455360a..220053a 100644 --- a/appx/mtask_aux.tex +++ b/appx/mtask_aux.tex @@ -1,11 +1,11 @@ \documentclass[../thesis.tex]{subfiles} -\begin{document} -\ifSubfilesClassLoaded{ - \pagenumbering{arabic} -}{} +\input{subfilepreamble} -\chapter{Auxiliary \texorpdfstring{\glsentrytext{MTASK}}{mTask} type classes}% +\begin{document} +\input{subfileprefix} +\ifSubfilesClassLoaded{\appendix\setcounter{chapter}{1}}{} +\chapter{Auxiliary mTask type classes}% \label{chp:mtask_aux} \lstset{basicstyle=\tt\footnotesize} \section{Peripherals}\label{sec:aux_peripherals} @@ -96,7 +96,7 @@ where soundLevel :: (v SoundDetector) -> MTask v Bool | tupl, aio v \end{lstClean} -\subsection{\texorpdfstring{\gls{I2C}}{I\textsuperscript{2}C} buttons} +\subsection{\IIC{} buttons} The \gls{MTASK} language supports one type of \gls{I2C} buttons (the \gls{I2C} buttons from the \gls{WEMOS} d1 mini \gls{OLED} shield). The buttons from this shield provide more information than just the status (see \cleaninline{ButtonStatus}). The complete interface containing the constructor and the measurement tasks is shown in \cref{lst:mtask_i2cbutton}. @@ -115,7 +115,7 @@ class i2cbutton v where BButton :: (v I2CButton) -> MTask v ButtonStatus \end{lstClean} -\subsection{\texorpdfstring{\gls{LED}}{LED} matrix} +\subsection{LED matrix} The \gls{MTASK} language supports one type of \gls{LED} matrix (the $8\times8$ \gls{LED} matrix shield for the \gls{WEMOS} d1 mini). Instead of containing a \gls{TOP}-like interface, the \gls{ARDUINO} interface is directly translated to \gls{MTASK}. As a result, every task immediately returns a stable value indicating the result. @@ -133,6 +133,32 @@ class LEDMatrix v where LMDisplay :: (v LEDMatrix) -> MTask v () \end{lstClean} +\subsection{Connection types}\label{lst:connection_types} +\begin{lstClean}[caption={}] +:: TCPSettings = + { host :: String + , port :: Int + , pingTimeout :: ?Int + } +:: MQTTSettings = + { host :: String + , port :: Int + , mcuId :: String + , serverId :: String + , auth :: MQTTAuth + } +:: TTYSettings = { + devicePath :: String, + baudrate :: BaudRate, + bytesize :: ByteSize, + parity :: Parity, + stop2bits :: Bool, + xonxoff :: Bool, + sleepTime :: Int + } +\end{lstClean} + + \lstset{basicstyle=\tt} \input{subfilepostamble} \end{document}