Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 1, 2024
1 parent d7b3608 commit ddeea46
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
15 changes: 11 additions & 4 deletions Software Guide/Bonsai.ONIX/Nodes/RHD2164Device.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<script src="../../../_static/copyURLToClipboard.js?v=6c4d178e"></script>
<script src="https://wavedrom.com/skins/default.js"></script>
<script src="https://wavedrom.com/wavedrom.min.js"></script>
<script async="async" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'Software Guide/Bonsai.ONIX/Nodes/RHD2164Device';</script>
<link rel="icon" href="../../../_static/favicon.png"/>
<link rel="index" title="Index" href="../../../genindex.html" />
Expand Down Expand Up @@ -536,10 +537,16 @@ <h2>Configuration<a class="headerlink" href="#configuration" title="Link to this
<tr class="row-odd"><td><p>EphysDataFormat</p></td>
<td><p>enum</p></td>
<td><p>The format of the ephys samples within the RHD2164DataFrame.</p>
<ul class="simple">
<li><p>Unsigned: raw 16-bit unsigned integer conversion results.</p></li>
<li><p>TwosCompliment: raw 16-bit signed integer conversion results.</p></li>
<li><p>MicroVolts: 32-bit floating-point voltages.</p></li>
<ul>
<li><p>Unsigned: raw 16-bit unsigned integer conversion results in offset binary.</p>
<div class="math notranslate nohighlight">
\[\mu V = 0.195 \mu V/LSB * (Sample - 32768.0)\]</div>
</li>
<li><p>TwosCompliment: raw 16-bit signed integer conversion results in two’s complement.</p>
<div class="math notranslate nohighlight">
\[\mu V = 0.195 \mu V/LSB * Sample\]</div>
</li>
<li><p>MicroVolts: 32-bit floating-point sample values in microvolts.</p></li>
</ul>
</td>
</tr>
Expand Down
16 changes: 13 additions & 3 deletions _sources/Software Guide/Bonsai.ONIX/Nodes/RHD2164Device.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,19 @@ options.
- enum
- The format of the ephys samples within the RHD2164DataFrame.

- Unsigned: raw 16-bit unsigned integer conversion results.
- TwosCompliment: raw 16-bit signed integer conversion results.
- MicroVolts: 32-bit floating-point voltages.
- Unsigned: raw 16-bit unsigned integer conversion results in offset binary.

.. math::
\mu V = 0.195 \mu V/LSB * (Sample - 32768.0)
- TwosCompliment: raw 16-bit signed integer conversion results in two's complement.

.. math::
\mu V = 0.195 \mu V/LSB * Sample
- MicroVolts: 32-bit floating-point sample values in microvolts.

* - AuxDataFormat
- enum
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

0 comments on commit ddeea46

Please sign in to comment.