Skip to content

Commit

Permalink
Auto-update from Github Actions Workflow
Browse files Browse the repository at this point in the history
Deployed from commit 17df8fd (refs/heads/master)
  • Loading branch information
github-actions committed Aug 20, 2024
1 parent 0e5c91b commit ab55b85
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 11 deletions.
2 changes: 1 addition & 1 deletion master/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 0517d64ce519e51b2e4e94d24ef7dcb8
config: f8ee85e43439373a32eba095a974e73c
tags: 645f666f9bcd5a90fca523b33c5a78b7
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,31 @@ Related:
* `FB_CheckPositionStateWrite`_


FB_FDQ_FlowMeter
^^^^^^^^^^^^^^^^

::

FUNCTION_BLOCK FB_FDQ_FlowMeter EXTENDS FB_AnalogInput
VAR_INPUT
END_VAR
VAR_OUTPUT
{attribute 'pytmc' := '
pv: FWM
field: EGU lpm
'}
fFlow : LREAL;
END_VAR
VAR
END_VAR
SUPER^(iTermBits:=15, fTermMax:=60, fTermMin:=0);
fFlow := SUPER^.fReal;

END_FUNCTION_BLOCK




FB_LIC
^^^^^^

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Settings
Pragmas
-------

Total pragmas found: 117
Total pragmas found: 118
Total linter errors: 0


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Pragmas
:header: PLC Name, Total Pragmas, Errors
:align: center

:ref:`Library <Library_overview_pragmas>`, 117, 0
:ref:`Library <Library_overview_pragmas>`, 118, 0


.. _Library_overview_pragmas:
Expand All @@ -15,7 +15,7 @@ Pragmas
Library
^^^^^^^

Total pragmas found: 117
Total pragmas found: 118
Total linter errors: 0


7 changes: 4 additions & 3 deletions master/_static/searchtools.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const Search = {

htmlToText: (htmlString, anchor) => {
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
for (const removalQuery of [".headerlinks", "script", "style"]) {
for (const removalQuery of [".headerlink", "script", "style"]) {
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
}
if (anchor) {
Expand Down Expand Up @@ -328,13 +328,14 @@ const Search = {
for (const [title, foundTitles] of Object.entries(allTitles)) {
if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
for (const [file, id] of foundTitles) {
let score = Math.round(100 * queryLower.length / title.length)
const score = Math.round(Scorer.title * queryLower.length / title.length);
const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
normalResults.push([
docNames[file],
titles[file] !== title ? `${titles[file]} > ${title}` : title,
id !== null ? "#" + id : "",
null,
score,
score + boost,
filenames[file],
]);
}
Expand Down
1 change: 1 addition & 0 deletions master/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ <h1>lcls-twincat-common-components<a class="headerlink" href="#lcls-twincat-comm
<li class="toctree-l2"><a class="reference internal" href="lcls-twincat-common-components_Library_source.html#fb-cc-tempsensortest">FB_CC_TempSensorTest</a></li>
<li class="toctree-l2"><a class="reference internal" href="lcls-twincat-common-components_Library_source.html#fb-checkpositionstatewrite">FB_CheckPositionStateWrite</a></li>
<li class="toctree-l2"><a class="reference internal" href="lcls-twincat-common-components_Library_source.html#fb-checkpositionstatewritetest">FB_CheckPositionStateWriteTest</a></li>
<li class="toctree-l2"><a class="reference internal" href="lcls-twincat-common-components_Library_source.html#fb-fdq-flowmeter">FB_FDQ_FlowMeter</a></li>
<li class="toctree-l2"><a class="reference internal" href="lcls-twincat-common-components_Library_source.html#fb-lic">FB_LIC</a></li>
<li class="toctree-l2"><a class="reference internal" href="lcls-twincat-common-components_Library_source.html#fb-lictest">FB_LICTest</a></li>
<li class="toctree-l2"><a class="reference internal" href="lcls-twincat-common-components_Library_source.html#fb-pmpsjsontesthelper">FB_PMPSJsonTestHelper</a></li>
Expand Down
22 changes: 22 additions & 0 deletions master/lcls-twincat-common-components_Library_source.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
<li class="toctree-l2"><a class="reference internal" href="#fb-cc-tempsensortest">FB_CC_TempSensorTest</a></li>
<li class="toctree-l2"><a class="reference internal" href="#fb-checkpositionstatewrite">FB_CheckPositionStateWrite</a></li>
<li class="toctree-l2"><a class="reference internal" href="#fb-checkpositionstatewritetest">FB_CheckPositionStateWriteTest</a></li>
<li class="toctree-l2"><a class="reference internal" href="#fb-fdq-flowmeter">FB_FDQ_FlowMeter</a></li>
<li class="toctree-l2"><a class="reference internal" href="#fb-lic">FB_LIC</a></li>
<li class="toctree-l2"><a class="reference internal" href="#fb-lictest">FB_LICTest</a></li>
<li class="toctree-l2"><a class="reference internal" href="#fb-pmpsjsontesthelper">FB_PMPSJsonTestHelper</a></li>
Expand Down Expand Up @@ -888,6 +889,27 @@ <h2>FB_CheckPositionStateWriteTest<a class="headerlink" href="#fb-checkpositions
</dd>
</dl>
</section>
<section id="fb-fdq-flowmeter">
<h2>FB_FDQ_FlowMeter<a class="headerlink" href="#fb-fdq-flowmeter" title="Link to this heading"></a></h2>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">FUNCTION_BLOCK</span> <span class="n">FB_FDQ_FlowMeter</span> <span class="n">EXTENDS</span> <span class="n">FB_AnalogInput</span>
<span class="n">VAR_INPUT</span>
<span class="n">END_VAR</span>
<span class="n">VAR_OUTPUT</span>
<span class="p">{</span><span class="n">attribute</span> <span class="s1">&#39;pytmc&#39;</span> <span class="o">:=</span> <span class="s1">&#39;</span>
<span class="n">pv</span><span class="p">:</span> <span class="n">FWM</span>
<span class="n">field</span><span class="p">:</span> <span class="n">EGU</span> <span class="n">lpm</span>
<span class="s1">&#39;}</span>
<span class="n">fFlow</span> <span class="p">:</span> <span class="n">LREAL</span><span class="p">;</span>
<span class="n">END_VAR</span>
<span class="n">VAR</span>
<span class="n">END_VAR</span>
<span class="n">SUPER</span><span class="o">^</span><span class="p">(</span><span class="n">iTermBits</span><span class="o">:=</span><span class="mi">15</span><span class="p">,</span> <span class="n">fTermMax</span><span class="o">:=</span><span class="mi">60</span><span class="p">,</span> <span class="n">fTermMin</span><span class="o">:=</span><span class="mi">0</span><span class="p">);</span>
<span class="n">fFlow</span> <span class="o">:=</span> <span class="n">SUPER</span><span class="o">^.</span><span class="n">fReal</span><span class="p">;</span>

<span class="n">END_FUNCTION_BLOCK</span>
</pre></div>
</div>
</section>
<section id="fb-lic">
<h2>FB_LIC<a class="headerlink" href="#fb-lic" title="Link to this heading"></a></h2>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">FUNCTION_BLOCK</span> <span class="n">FB_LIC</span>
Expand Down
2 changes: 1 addition & 1 deletion master/lcls-twincat-common-components_Library_summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ <h1>Settings<a class="headerlink" href="#settings" title="Link to this heading">
</section>
<section id="pragmas">
<span id="library-pragmas"></span><h1>Pragmas<a class="headerlink" href="#pragmas" title="Link to this heading"></a></h1>
<p>Total pragmas found: 117
<p>Total pragmas found: 118
Total linter errors: 0</p>
</section>
<section id="libraries">
Expand Down
4 changes: 2 additions & 2 deletions master/lcls-twincat-common-components_pragmas.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ <h1>Pragmas<a class="headerlink" href="#pragmas" title="Link to this heading">
</thead>
<tbody>
<tr class="row-even"><td><p><a class="reference internal" href="#library-overview-pragmas"><span class="std std-ref">Library</span></a></p></td>
<td><p>117</p></td>
<td><p>118</p></td>
<td><p>0</p></td>
</tr>
</tbody>
</table>
<section id="library">
<span id="library-overview-pragmas"></span><h2>Library<a class="headerlink" href="#library" title="Link to this heading"></a></h2>
<p>Total pragmas found: 117
<p>Total pragmas found: 118
Total linter errors: 0</p>
</section>
</section>
Expand Down
2 changes: 1 addition & 1 deletion master/searchindex.js

Large diffs are not rendered by default.

0 comments on commit ab55b85

Please sign in to comment.