some cleaning but now broken bc csdash

master
Ondřej Hruška 6 years ago
parent 513a6ef89d
commit e7c589b835
Signed by: MightyPork
GPG Key ID: 2C5FD5035250423D
  1. 33
      ch.fw_structure.tex
  2. 2
      ch.gex_units.tex
  3. 106
      ch.tinyframe.tex
  4. 10
      ch.unit.1wire.tex
  5. 18
      ch.unit.adc.tex
  6. 2
      ch.unit.dac.tex
  7. 2
      ch.unit.do.tex
  8. 2
      ch.unit.fcap.tex
  9. 4
      ch.unit.sipo.tex
  10. 5
      document_config.tex
  11. BIN
      img/tf-conceptual.pdf
  12. 8
      pre.gex_command_tables.tex
  13. 18
      pre.utils.tex
  14. BIN
      references/10.1109@ieeestd.2008.4610935.pdf
  15. 10
      thesis.bib
  16. BIN
      thesis.pdf

@ -4,12 +4,12 @@ The firmware is built around a \textit{core framework} which provides services t
\section{Internal Structure Block Diagram}
The data flows and other internal logic of the firmware are depicted in \cref{fig:gex-internal}, with more explanation following in this chapter. The interchangeable role of the three communication interfaces can be clearly seen in the diagram, as well as the central role of the message queue, which decouples interrupts from the processing thread.
The data flows and other internal logic of the firmware are depicted in \cref{fig:gexinternal}, with more explanation following in this chapter. The interchangeable role of the three communication interfaces can be clearly seen in the diagram, as well as the central role of the message queue, which decouples interrupts from the processing thread.
\begin{figure}[h]
\centering
\includegraphics[width=\textwidth] {img/gex-internal.pdf}
\caption{\label{fig:gex-internal}Block diagram showing the internal logic in the GEX firmware}
\caption{\label{fig:gexinternal}Block diagram showing the internal logic in the GEX firmware}
\end{figure}
The core framework forms the skeleton of the firmware and usually does not need any changes when new user-facing features are added. When the firmware is ported to a different STM32 microcontroller, the framework is not difficult to adjust and the whole process can be accomplished in a few hours. The porting of units to a different platforms is significantly more challenging.
@ -25,18 +25,6 @@ The framework provides the following services to units:
\item Interrupt routing (\cref{sec:irq-routing})
\end{itemize}
\section{FreeRTOS Synchronization Objects Usage} \label{sec:rtos-in-gex}
The firmware is built around FreeRTOS (\cref{sec:freertos}) and a number of its synchronization objects and patterns are used to make its operation more robust.
\subsection{Message and Job Queue}
The message and job queue, seen in \cref{fig:gex-internal}, is used to decouple asynchronous interrupts from message transmission. All three communication interfaces use interrupts for the asynchronous handling of incoming messages. The same interrupt handler receives an event after a transmission was completed. The queue ensures that messages can be received during the transmission of a large response that demands the use of multiple transmissions.
The ``transmission complete'' interrupt signals this fact to the message processing task using a binary semaphore. The semaphore is released in the \gls{ISR} and taken when a new block of data is to be transmitted. If more data needs to be transmitted, the queue task waits for the semaphore and enters a Blocked state until the semaphore becomes available again.
Two mutexes are used in the firmware: one that guards access to TinyFrame until the previous message was fully transmitted, and one to guard a shared memory buffer (reused in several different places to save memory and avoid its re-allocation). The hardware resource registry (explained in \cref{sec:res-allocation}) does not need mutexes for individual resources, as concurrent access to those fields can never happen; resources are always taken or released sequentially by the same task.
\section{Unit Life Cycle and Internal Structure} \label{sec:units-function}
GEX's user-facing functions, units, are implemented in \textit{unit drivers}. Those are independent modules in the firmware that the user can enable and configure, in one or more instances. In practice, we are limited by hardware constraints: i.e., there may be only one \gls{ADC} peripheral, or two \gls{SPI} ports. The assignment of those hardware resources to units is handled by the \textit{resource registry} (\cref{sec:res-allocation}).
@ -72,12 +60,12 @@ To prevent multiple access, the firmware includes a \textit{resource registry} (
The resources used by the core framework are taken by a virtual unit \verb|SYSTEM| on start-up to prevent conflicts with the user's units. This is the case of the status \gls{LED}, the Lock button, \gls{USB} pins, the communication \gls{UART}, the pins and an \gls{SPI} peripheral connecting the wireless module, pins used for the crystal oscillator, and the timer/counter which provides the system timebase.
\section{Settings Storage} \label{sec:settings-storage}
\section{Settings Storage} \label{sec:settings_storage}
\begin{figure}[h]
\centering
\includegraphics[scale=1.2] {img/settings-storage.pdf}
\caption{\label{fig:settings-storage}Structure of the settings subsystem}
\caption{\label{fig:settings_storage}Structure of the settings subsystem}
\end{figure}
The system and unit settings are written, in a binary form, into designated pages of the microcontroller's Flash memory. The unit settings serialization and parsing is implemented by the respective unit drivers.
@ -90,7 +78,7 @@ The INI files, which can be edited through the communication \gls{API} or using
\section{Message Passing} \label{sec:message_passing}
One of the key functions of the core framework is to deliver messages from the host \gls{PC} to the right units.
One of the key functions of the core framework is to deliver messages from the host \gls{PC} to the right units. The \textit{TinyFrame} protocol is used, described in detail in \cref{sec:tinyframe}; it is represented by the blocks ``TinyFrame Parser'' and ``TinyFrame Builder'' in \cref{fig:gex-internal}.
Two groups of messages exist: \textit{system messages} and \textit{unit messages}. System messages can, for instance, access the INI files, or request a list of available units. Unit messages are addressed to a particular unit, and their payload format is defined by the unit's driver. An incoming message is inspected and delivered to the appropriate recipient, or responded to with an error message.
@ -120,6 +108,17 @@ void DMA1_Channel4_5_6_7_IRQHandler(void)
It is evident that multiple units might need to use the same handler, even at the same time, since each \gls{DMA} channel is configured, and works, independently. GEX implements a redirection scheme to accomplish such interrupt sharing: All interrupt handlers are defined in one place, accompanied by a table of function pointers. When a unit driver wants to register an interrupt handler, it stores a pointer to it in this redirection table. Then, once an interrupt is invoked, the common handler checks the corresponding entry in the table and calls the referenced routine, if any. Conversely, when a unit driver de-initializes a unit, it removes all interrupt handlers it used, freeing the redirection table slots for other use.
\section{FreeRTOS Synchronization Objects Usage} \label{sec:rtos-in-gex}
The firmware is built around FreeRTOS (\cref{sec:freertos}) and a number of its synchronization objects and patterns are used to make its operation more robust.
\subsection{Message and Job Queue}
The message and job queue, seen in \cref{fig:gexinternal}, is used to decouple asynchronous interrupts from message transmission. All three communication interfaces use interrupts for the asynchronous handling of incoming messages. The same interrupt handler receives an event after a transmission was completed. The queue ensures that messages can be received during the transmission of a large response that demands the use of multiple transmissions.
The ``transmission complete'' interrupt signals this fact to the message processing task using a binary semaphore. The semaphore is released in the \gls{ISR} and taken when a new block of data is to be transmitted. If more data needs to be transmitted, the queue task waits for the semaphore and enters a Blocked state until the semaphore becomes available again.
Two mutexes are used in the firmware: one that guards access to TinyFrame until the previous message was fully transmitted, and one to guard a shared memory buffer (reused in several different places to save memory and avoid its re-allocation). The hardware resource registry (explained in \cref{sec:res-allocation}) does not need mutexes for individual resources, as concurrent access to those fields can never happen; resources are always taken or released sequentially by the same task.
\section{Source Code Layout}

@ -6,6 +6,8 @@ Each unit's description will be accompanied by a corresponding snippet from the
The number in the first column of the command (or event) tables, marked as ``Code'', is the command number (or report type) used in the payload to identify how the message data should be treated. When the request or response payload is empty, it is omitted from the table. The same applies to commands with no response, in which case adding 0x80 to the command number triggers a SUCCESS response after the command is finished.
\section{General Notes}
\subsection{Unit Naming}
Unit types are named in uppercase (SPI, 1WIRE, NPX) in the INI file and in the list of units. Unit instances can be named in any way the user desires; using lowercase makes it easier to distinguish them from unit types. It is advisable to use descriptive names, e.g., not ``pin1'', but rather ``button''.

@ -1,17 +1,41 @@
\chapter{Communication Protocol} \label{sec:tinyframe}
GEX can be controlled through a hardware \gls{UART}, the \gls{USB} or over a wireless link. To minimize the firmware complexity, all the three connection methods are handled by the same protocol stack and are functionally interchangeable.
GEX can be controlled through a hardware \gls{UART}, the \gls{USB}, or over a wireless link. To minimize the firmware complexity, all the three connection methods use the same binary messaging protocol and are functionally interchangeable.
The communication is organized in transactions. A transaction consists of one or more messages going in either direction. Messages can be stand-alone, or chained with a response or a follow-up message using the transaction ID. Both peers, GEX and the client application running on the host PC, are equal in the communication: either side can independently initiate a transaction at any time.
\begin{wrapfigure}[9]{r}{0.38\textwidth}
\vspace{-1em}
\centering
\includegraphics[scale=1]{img/tf-conceptual.pdf}
\caption{\label{fig:tf-conceptual}TinyFrame API}
\end{wrapfigure}
GEX uses the \textit{TinyFrame}~\cite{tinyframerepo} framing library, developed, likewise, by the author, but kept as a separate project for easier re-use in different applications. The library implements frame building and parsing, including checksum calculation, and provides high-level \gls{API}.
Both peers, GEX and the client library running on the host \gls{PC}, are at an equal level: either side can independently send a message at any time. The communication is organized in transactions; a transaction consists of one or more messages going in either direction. A message can be stand-alone, or chained to another, typically a request, using the frame ID field; this is the major advantage over text-based protocols, like AT commands, where all messages are independent and their relation to each other is not always clear.
\section{Binary Payload Structure Notation}
Binary payloads are described in several places of this text. We use a shortened notation derived from the C language to represent field data types:
\begin{pldlist}
\cfield{bool} -- 8-bit field allowing values 0 (false) and 1 (true)
\cfield{u8}, \cfieldx{u16}, \cfieldx{u32} -- unsigned 8-, 16-, or 32-bit integer
\cfield{i8}, \cfieldx{i16}, \cfieldx{i32} -- signed (two's complement) 8-, 16-, or 32-bit integer
\cfield{char} -- an 8-bit ASCII character
\cfield{float} -- single-precision (32-bit) IEEE~754~\cite{floatpaper} floating point number
\cfield{double} -- double-precision (64-bit) IEEE~754~\cite{floatpaper} floating point number
\cfield{u8[]} -- array of variable length
\cfield{u8[n]} -- array of length n
\cfield{cstring} -- zero-terminated character string (like \cfieldx{char[]}, ending with a 0x00 byte)
\end{pldlist}
GEX uses a framing library \textit{TinyFrame}~\cite{tinyframerepo}, developed likewise by the author, but kept as a separate project for easier re-use in different applications. The library implements frame building and parsing, checksum calculation and a system of message listeners.
\section{Frame Structure}
Message frames have the following structure (all little-endian):
\begin{boxedpayload}[``TinyFrame'' frame structure, as used in GEX]
\cfield{u8} start-of-frame marker (0x01)
\cfield{0x01} start-of-frame marker
\cfield{u16} frame ID
\cfield{u16} payload length
\cfield{u8} frame type
@ -57,19 +81,19 @@ Message frames have the following structure (all little-endian):
\textit{Frame ID}, which could be better described as \textit{Transaction ID}, uniquely identifies each transaction. The most significant bit is set to a different value in each peer to avoid ID conflicts, and the rest of the ID field is incremented with each initiated transaction.
\section{Message Listeners}
\section{Message Listeners} \label{sec:tf-listeners}
After sending a message that should receive a response, the peer registers an \textit{ID listener} with the ID of the sent message. A response reuses the original frame ID and when it is received, this listener is called to process it. ID listeners can also be used to receive multi-part messages re-using the original ID.
\textit{Frame type} describes the payload and does not have any prescribed format; the values are defined by application (here, GEX). A \textit{type listener} may be registered to handle all incoming messages with a given frame type. It works in a similar way to an ID listener and has a lower priority.
\textit{Frame type} describes the payload and does not have any prescribed format in TinyFrame; its values are defined by the application. A \textit{type listener} may be registered to handle all incoming messages with a given frame type. It works in a similar way to an ID listener, but has a lower priority.
Each message can be handled by only one listener, unless it explicitly requests the message to be passed on to a lower priority one. Messages unhandled by any listener are given to a default listener, which can, e.g., write an error to a debug log.
Each message can be handled by only one listener, unless the listener explicitly requests it to be passed on. Messages not handled by any listener are given to a default listener, which can, e.g., write an error to a debug log.
\section{Designated Frame Types}
The following table lists all frame types used by GEX. It is divided into four logical sections: General, Bulk Read/Write, Unit Access, and Settings.
\Cref{fig:tf-types} lists the frame types defined by GEX. It is divided into four logical sections: General, Bulk Read/Write, Unit Access, and Settings. The payloads belonging to those frame types will be outlined in the following sections.
\begin{table*}[h]
\begin{table}[h]
\centering
\begin{tabular}{clll}
\toprule
@ -92,10 +116,11 @@ The following table lists all frame types used by GEX. It is divided into four l
0x20 & List Units & \textit{Read a list of all instantiated units} \\
0x21 & INI Read & \textit{Request a bulk read transaction of an INI file} \\
0x22 & INI Write & \textit{Request a bulk write transaction of an INI file} \\
0x23 & Persist Config & \textit{Write updated configuration to Flash} \\
0x23 & Persist Config & \textit{Write updated configuration to flash} \\
\bottomrule
\end{tabular}
\end{table*}
\caption{\label{fig:tf-types}Frame types used by GEX}
\end{table}
\section{Bulk Read and Write Transactions} \label{sec:tf-bulk-rw}
@ -104,7 +129,7 @@ The bulk read and write transactions are generic, multi-message exchanges which
The reason for splitting a long file into multiple messages, rather than sending it all in one, lies in the hardware limitations of the platform, specifically its small amount of \gls{RAM} (the STM32F072 has only 16\,kB). A message cannot be processed until its payload checksum is received and verified; however, the configuration file can have several kilobytes, owning to the numerous explanatory comments, which would require a prohibitively large data buffer. The chunked transaction could, additionally, be extended to support message re-transmission on timeout without sending the entire file again.
A read or write transaction can be aborted by a frame 0x08 (Bulk Abort) at any time, though aborting a write transaction may leave the configuration in a corrupted state. As hinted in the introduction of this chapter, a transaction is defined by sharing a common frame ID. Thus, all frames in a bulk transaction must have the same ID, otherwise the ID listeners would not be called for the subsequent messages.
A read or write transaction can be aborted by a frame \CmdBulkAbort at any time, though aborting a write transaction may leave the configuration in a corrupted state. As hinted in the introduction of this chapter, a transaction is defined by sharing a common frame ID. Thus, all frames in a bulk transaction must have the same ID, otherwise the ID listeners would not be called for the subsequent messages.
\Cref{fig:bulk-rw} shows a diagram of the bulk read and write data flow.
@ -116,9 +141,9 @@ A read or write transaction can be aborted by a frame 0x08 (Bulk Abort) at any t
\subsection{Bulk Read}
To read an INI file, we first send a frame 0x21 (INI Read), specifying the target file in the payload:
To read an INI file, we first send a frame \CmdINIRead, specifying the target file in the payload:
\begin{boxedpayload}[INI Read frame structure]
\begin{boxedpayload}[Frame \CmdINIRead payload structure]
\cfield{u8} which file to write
\begin{pldlist}
\item 0 \dots UNITS.INI
@ -127,45 +152,48 @@ To read an INI file, we first send a frame 0x21 (INI Read), specifying the targe
\end{boxedpayload}
What follows is a standard bulk read transaction with the requested file.
GEX offers the file for reading with a frame 0x03 (Bulk Read Offer):
GEX offers the file for reading with a frame \CmdBulkReadOffer:
\begin{boxedpayload}[Bulk Read frame structure]
\begin{boxedpayload}[Frame \CmdBulkReadOffer payload structure]
\cfield{u32} full size of the file in bytes
\cfield{u32} largest chunk that can be read at once
\end{boxedpayload}
Now we can proceed to read the file using 0x04 (Bulk Read Poll), which is always responded to with 0x06 (Bulk Data), or 0x07 (Bulk End) if this was the last frame. Data frames have only the useful data as their payload.
The 0x04 (Bulk Read Poll) payload specifies how many bytes we want to read:
Now we can proceed to read the file using \CmdBulkReadPoll, which is always responded to with \CmdBulkData, or \CmdBulkEnd if this was the last frame. Data frames have only the useful data as their payload. The \CmdBulkReadPoll payload specifies how many bytes we want to read:
\begin{boxedpayload}[Bulk Read Poll frame structure]
\begin{boxedpayload}[Frame \CmdBulkReadPoll payload structure]
\cfield{u32} how many bytes to read (at most)
\end{boxedpayload}
\begin{boxedpayload}[Frame \CmdBulkData or \CmdBulkEnd payload in a ``read'' transaction]
\cfield{char[]} a chunk of the read file
\end{boxedpayload}
\subsection{Bulk Write}
To overwrite an INI file, we first send a frame 0x22 (INI Write) with the file size as its payload. The name of the file is irrelevant, as it is detected automatically by inspecting the content.
To overwrite an INI file, we first send a frame \CmdINIWrite with the file size as its payload. The name of the file is irrelevant, as it is detected automatically by inspecting the content.
\begin{boxedpayload}[INI Write frame structure]
\begin{boxedpayload}[Frame \CmdINIWrite payload structure]
\cfield{u32} size of the written file, in bytes
\end{boxedpayload}
The write request is confirmed by a frame 0x05 (Bulk Write Offer) sent back:
\noindent
The write request is confirmed by a frame \CmdBulkWriteOffer sent back:
\begin{boxedpayload}[Bulk Write Offer frame structure]
\begin{boxedpayload}[Frame \CmdBulkWriteOffer payload structure]
\cfield{u32} total bytes to write (here copied from the request frame)
\cfield{u32} how many bytes may be written per message
\end{boxedpayload}
We can now send the file as a series of frames 0x06 (Bulk Data), or 0x07 (Bulk End) in the last frame, with chunks of the data as their payload. Each frame is confirmed by 0x00 (Success).
We can now send the file as a series of frames of type \CmdBulkData, or \CmdBulkEnd in the last frame, with chunks of the data as their payloads. Each frame is confirmed by \CmdSuccess.
\begin{boxedpayload}[Bulk Data or Bulk End frame structure]
\cfield{u8[]} a chunk of the written file
\begin{boxedpayload}[Frame \CmdBulkData or \CmdBulkEnd payload in a ``write'' transaction]
\cfield{char[]} a chunk of the written file
\end{boxedpayload}
\subsection{Persisting the Changed Configuration to Flash}
The written INI file is immediately parsed and the settings are applied. However, those changes are not persistent: they exist only in RAM and will be lost when the module restarts. To save the current state to Flash, issue a frame 0x23 (Persist Config). This has the same effect as pressing the LOCK button (or replacing the LOCK jumper) when the INI files are edited using the virtual mass storage.
The written INI file is immediately parsed and the settings are applied. However, those changes are not persistent: they exist only in RAM and will be lost when the module restarts. To save the current state to Flash, issue a frame \CmdPersistConfig. This has the same effect as pressing the LOCK button (or replacing the LOCK jumper) when the INI files are edited using the virtual mass storage.
It should be noted that after flashing a firmware, the Flash control registers may remain in an unexpected state and the module must first be manually restarted before attempting to persist settings. Otherwise an assertion will fail and the module is restarted by a watchdog, losing the temporary changes.
@ -174,44 +202,44 @@ It should be noted that after flashing a firmware, the Flash control registers m
\section{Reading a List of Units}
The frame 0x20 (List Units) requests a list of all available units in the GEX module. The list includes all units' callsigns, names and types. The response payload has the following format (in pseudocode):
The frame \CmdListUnits requests a list of all available units in the GEX module. The list includes all units' callsigns, names and types. The response payload has the following format:
\begin{boxedpayload}[List Units response structure (frame type Success)]
\begin{boxedpayload}[Frame \CmdListUnits response structure]
\cfield{u8} the number of available units
\item For each unit:
\begin{pldlist}
\cfield{u8} unit callsign
\cfield{char[]} unit name (zero-terminated string)
\cfield{char[]} unit type (zero-terminated string)
\cfield{cstring} unit name
\cfield{cstring} unit type
\end{pldlist}
\end{boxedpayload}
\section{Unit Requests and Reports} \label{sec:unit_requests_reports}
Frame types 0x10 (Unit Request) and 0x11 (Unit Report) are dedicated to messages sent to and by unit instances. Each has a fixed header (\textit{inside the payload}) followed by unit-specific data.
Frame types \CmdUnitRequest and \CmdUnitReport are dedicated to messages sent to and by unit instances. Each has a fixed header (\textit{inside the payload}) followed by unit-specific data.
\subsection{Unit Requests}\label{sec:unit_requests_format}
Unit requests deliver a message from the host to a unit instance. Unit drivers implements different commands, each with its own payload structure. The frame 0x10 (Unit Request) has the following structure:
Unit requests deliver a message from the host to a unit instance. Unit drivers implements different commands, each with its own payload structure. The frame \CmdUnitRequest has the following structure:
\begin{boxedpayload}[Unit Request frame structure]
\begin{boxedpayload}[Frame \CmdUnitRequest payload structure]
\cfield{u8} unit callsign
\cfield{u8} command number, handled by the unit driver
\cfield{u8[]} command payload, handled by the unit driver; its size and content depend on the unit driver and the particular command number, as listed in \cref{sec:units-overview}
\cfield{u8[]} command payload, handled by the unit driver; its size and content depend on the unit driver and the particular command number, as defined in \cref{sec:units-overview}
\end{boxedpayload}
The most significant bit of the command byte (0x80) has a special meaning: when set, the message delivering routine responds with 0x00 (Success) after the command completes, unless an error occurred. That is used to get a confirmation that the message was delivered and the module operates correctly (as opposed to, e.g., a lock-up resulting in a watchdog reset). Requests which normally generate a response (e.g., reading a value from the unit) should not be sent with this flag, as that would produce two responses at once.
\subsection{Unit Reports}\label{sec:unit_reports_format}
Several unit types can produce asynchronous events, such as reporting a pin change or a triggering condition. The event is timestamped and sent with a frame type 0x11 (Unit Report):
Several unit types can produce asynchronous events, such as reporting a pin change, or a triggering condition. The event is timestamped and sent with a frame type \CmdUnitReport:
\begin{boxedpayload}[Unit Report (event) frame structure]
\begin{boxedpayload}[Frame \CmdUnitReport payload structure]
\cfield{u8} unit callsign
\cfield{u8} report type, defined by the unit driver
\cfield{u64} event time (microseconds since power-on)
\cfield{u8[]} report payload; similar to requests, the payload structure depends on the unit driver and the particular report type
\cfield{u8[]} report payload; similar to requests, the payload structure depends on the unit driver and the particular report type, as defined in \cref{sec:units-overview}
\end{boxedpayload}

@ -22,27 +22,27 @@ parasitic=N
0 & \cname{CHECK\_PRESENCE}
Test if there are any devices attached to the bus.
& \begin{cmdresp}
\cfield{u8} presence detected (0, 1)
\cfield{bool} presence detected
\end{cmdresp} \\
1 & \cname{SEARCH\_ADDR}
Start the search algorithm.
& \begin{cmdresp}
\cfield{u8} should continue (0, 1)
\cfield{bool} should continue
\cfield{u64[]} ROM codes
\end{cmdresp} \\
2 & \cname{SEARCH\_ALARM}
Start the search algorithm, finding only devices in an alarm state.
& \begin{cmdresp}
\cfield{u8} should continue (0, 1)
\cfield{bool} should continue
\cfield{u64[]} ROM codes
\end{cmdresp} \\
3 & \cname{SEARCH\_CONTINUE}
Continue a previously started search
& \begin{cmdresp}
\cfield{u8} should continue (0, 1)
\cfield{bool} should continue
\cfield{u64[]} ROM codes
\end{cmdresp} \\
@ -65,7 +65,7 @@ parasitic=N
\begin{cmdreq}
\cfield{u64} ROM code
\cfield{u16} read length
\cfield{u8} verify checksum (0, 1)
\cfield{bool} verify checksum
\cfield{u8[]} request bytes
\end{cmdreq}
\cjoin

@ -84,7 +84,7 @@ avg_factor=500
Get the averaged values from enabled channels. Not available for high sample rates and when disabled.
&
\begin{cmdresp}
\cfield{float32[]} smoothed values 0--4095
\cfield{float[]} smoothed values 0--4095
\end{cmdresp}
\\
@ -92,13 +92,13 @@ avg_factor=500
Read factory calibration constants from the \gls{MCU}'s \gls{ROM}
&
\begin{cmdresp}
\cfield{u16} VREFINT\_CAL (raw word)
\cfield{u16} VREFINT\_CAL\_VADCREF (mV)
\cfield{u16} TSENSE\_CAL1 (raw word)
\cfield{u16} TSENSE\_CAL2 (raw word)
\cfield{u16} TSENSE\_CAL1\_TEMP (°C)
\cfield{u16} TSENSE\_CAL2\_TEMP (°C)
\cfield{u16} TSENSE\_CAL\_VADCREF (mV)
\cfield{u16} V$_\mathrm{REF\_INT}$ voltage (raw ADC word)
\cfield{u16} ADC reference voltage (mV) during V$_\mathrm{REF\_INT}$ measurement
\cfield{u16} Temperature sensor voltage in point 1 (raw ADC word)
\cfield{u16} Temperature sensor voltage in point 2 (raw ADC word)
\cfield{u16} Temperature in point 1 (°C)
\cfield{u16} Temperature in point 2 (°C)
\cfield{u16} ADC reference voltage (mV) during temp. sensor calibration
\end{cmdresp}
\\
@ -117,7 +117,7 @@ avg_factor=500
&
\begin{cmdresp}
\cfield{u32} requested sample rate
\cfield{float32} real sample rate
\cfield{float} achieved sample rate
\end{cmdresp}
\\

@ -80,7 +80,7 @@ Channels are specified in all commands as a bit map:
Set the channel frequency
& \begin{cmdreq}
\cfield{u8} channels
\cfield{float32} frequency
\cfield{float} frequency
\end{cmdreq} \\
21 & \cname{SET\_PHASE}

@ -44,7 +44,7 @@ open-drain=
Generate a pulse on the selected pins. The microsecond scale may be used only for 0--999\,$\mu$s.
& \begin{cmdreq}
\cfield{u16} pins to pulse
\cfield{u8} active level (0, 1)
\cfield{bool} active level
\cfield{u8} scale: 0-ms, 1-$\mu$s
\cfield{u16} duration
\end{cmdreq}

@ -144,7 +144,7 @@ Some commands include optional parameter setting. Using 0 in the field keeps the
20 & \cname{SET\_POLARITY}
Set pulse polarity (active level)
& \begin{cmdresp}
\cfield{u8} polarity (0,1)
\cfield{bool} polarity
\end{cmdresp} \\
21 & \cname{SET\_PRESCALLER}

@ -46,7 +46,7 @@ The WRITE and CLEAR\_DIRECT commands are the only ones normally used. The others
Load the shift registers and leave the data outputs in the ``trailing data'' state before sending the \textit{Store} pulse.
&
\begin{cmdreq}
\cfield{u16} trailing data
\cfield{u16} trailing data (packed pins)
\item For each output (same size)
\begin{pldlist}
\cfield{u8[]} data to load
@ -58,7 +58,7 @@ The WRITE and CLEAR\_DIRECT commands are the only ones normally used. The others
Directly write to the data pin(s)
&
\begin{cmdreq}
\cfield{u16} values to write
\cfield{u16} values to write (packed pins)
\end{cmdreq} \\
2 &

@ -70,6 +70,11 @@
urlcolor={blue!80!black}
}
\usepackage{bookmark}
\bookmarksetup{
numbered,
}
\usepackage[nameinlink,capitalize,noabbrev]{cleveref}
%% ACRONYM CONFIG

Binary file not shown.

@ -126,3 +126,11 @@
\end{lrbox}\fbox{\usebox{\mybox}}
\endgroup
}

@ -27,3 +27,21 @@
\newcommand{\arm}{Arm\xspace}
\newcommand{\armcm}{Arm Cortex-M\xspace}
\newcommand{\mbed}{Arm Mbed\xspace}
\newcommand*\xCmdName[2]{#1~(#2)\xspace}
\newcommand*\CmdSuccess{\xCmdName{0x00}{Success}}
\newcommand*\CmdPing{\xCmdName{0x01}{Ping}}
\newcommand*\CmdError{\xCmdName{0x02}{Error}}
\newcommand*\CmdBulkReadOffer{\xCmdName{0x03}{Bulk~Read~Offer}}
\newcommand*\CmdBulkReadPoll{\xCmdName{0x04}{Bulk~Read~Poll}}
\newcommand*\CmdBulkWriteOffer{\xCmdName{0x05}{Bulk~Write~Offer}}
\newcommand*\CmdBulkData{\xCmdName{0x06}{Bulk~Data}}
\newcommand*\CmdBulkEnd{\xCmdName{0x07}{Bulk~End}}
\newcommand*\CmdBulkAbort{\xCmdName{0x08}{Bulk~Abort}}
\newcommand*\CmdUnitRequest{\xCmdName{0x10}{Unit~Request}}
\newcommand*\CmdUnitReport{\xCmdName{0x11}{Unit~Report}}
\newcommand*\CmdListUnits{\xCmdName{0x20}{List~Units}}
\newcommand*\CmdINIRead{\xCmdName{0x21}{INI~Read}}
\newcommand*\CmdINIWrite{\xCmdName{0x22}{INI~Write}}
\newcommand*\CmdPersistConfig{\xCmdName{0x23}{Persist~Config}}

@ -515,3 +515,13 @@
url = {https://www.febo.com/pipermail/time-nuts/attachments/20071201/e7833af5/attachment.pdf},
urldate = {2018-05-13}
}
@ARTICLE{floatpaper,
journal={IEEE Std 754-2008},
title={IEEE Standard for Floating-Point Arithmetic},
year={2008},
pages={1-70},
keywords={IEEE standards;floating point arithmetic;programming;IEEE standard;arithmetic formats;computer programming;decimal floating-point arithmetic;754-2008;NaN;arithmetic;binary;computer;decimal;exponent;floating-point;format;interchange;number;rounding;significand;subnormal},
doi={10.1109/IEEESTD.2008.4610935},
month={Aug},
}

Binary file not shown.
Loading…
Cancel
Save