Skip to content

Commit

Permalink
deploy: 3af35bc
Browse files Browse the repository at this point in the history
  • Loading branch information
bmenne-dspace committed Dec 6, 2023
1 parent 2b7e775 commit 78893fa
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
4 changes: 2 additions & 2 deletions main/fmi-guide/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -590,8 +590,8 @@
<div id="header">
<h1>FMI 3.0 Implementers' Guide</h1>
<div class="details">
<span id="revnumber">version main-530776c52e2ba0dfb43622716816321bfcf72763,</span>
<span id="revdate">2023-11-30</span>
<span id="revnumber">version main-3af35bcc8af70524d3114340e0e4555152bd4916,</span>
<span id="revdate">2023-12-06</span>
</div>
<div id="toc" class="toc2">
<div id="toctitle">Contents</div>
Expand Down
4 changes: 2 additions & 2 deletions main/fmi-profiles/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -589,8 +589,8 @@
<div id="header">
<h1>FMI 2.0/3.0 Feature Profiles</h1>
<div class="details">
<span id="revnumber">version main-530776c52e2ba0dfb43622716816321bfcf72763,</span>
<span id="revdate">2023-11-30</span>
<span id="revnumber">version main-3af35bcc8af70524d3114340e0e4555152bd4916,</span>
<span id="revdate">2023-12-06</span>
</div>
<div id="toc" class="toc2">
<div id="toctitle">Contents</div>
Expand Down
24 changes: 14 additions & 10 deletions main/ls-bus-guide/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -586,8 +586,8 @@
<div id="header">
<h1>FMI LS BUS Implementers' Guide</h1>
<div class="details">
<span id="revnumber">version main-530776c52e2ba0dfb43622716816321bfcf72763,</span>
<span id="revdate">2023-11-30</span>
<span id="revnumber">version main-3af35bcc8af70524d3114340e0e4555152bd4916,</span>
<span id="revdate">2023-12-06</span>
</div>
<div id="toc" class="toc2">
<div id="toctitle">Contents</div>
Expand Down Expand Up @@ -709,24 +709,28 @@ <h4 id="low-cut-can-getting-started-with-can">4.1.1. Getting Started with CAN, C
<div class="sect4">
<h5 id="low-cut-can-getting-started-provided-header-files">4.1.1.1. Provided Header Files</h5>
<div class="paragraph">
<p>The layered standard fmi-ls-bus not only contains a textual specification for bus support, but also provides header and utility functions as C code to make creation and use within FMUs as easy as possible.
The following header files are provided by the standard for this purpose, although their use is not mandatory but optional:</p>
<p>Besides the textual specification for FMUs with bus support, the fmi-ls-bus layered standard also provides a C API to make the creation of FMUs with bus support as easy and generalized as possible.
The standard differentiates between two groups of files within the C API: Mandatory and optional files.</p>
</div>
<div class="ulist">
<ul>
<li>
<p><a href="https://github.com/modelica/fmi-ls-bus/blob/main/headers/fmi3LsBus.h">fmi3LsBus.h</a> provides general functions and structures.
These header file applies to all supported bus types of the layered standard.</p>
<p><a href="https://github.com/modelica/fmi-ls-bus/blob/main/headers/fmi3LsBus.h">fmi3LsBus.h</a> provides general macros, types and structures of common Bus Operations.
These header file applies to all supported bus types of the layered standard.
The usage of this file is mandatory.</p>
</li>
<li>
<p><a href="https://github.com/modelica/fmi-ls-bus/blob/main/headers/fmi3LsBusCan.h">fmi3LsBusCan.h</a> provides functions and structures explicit for CAN, CAN FD and CAN XL.
Primarily, structures are included here that allow the Bus Operations specified by the layered standard to be easily created and used.</p>
<p><a href="https://github.com/modelica/fmi-ls-bus/blob/main/headers/fmi3LsBusCan.h">fmi3LsBusCan.h</a> provides macros, types and structures of Bus Operations explicit for CAN, CAN FD and CAN XL.
Primarily, structures are included here that allow the Bus Operations specified by the layered standard to be easily created and used.
The usage of this file is mandatory.</p>
</li>
<li>
<p><a href="https://github.com/modelica/fmi-guides/blob/main/ls-bus-guide/headers/fmi3LsBusUtil.h">fmi3LsBusUtil.h</a> provides common utility functions and structures for all supported bus types.</p>
<p><a href="https://github.com/modelica/fmi-ls-bus/blob/main/headers/fmi3LsBusUtil.h">fmi3LsBusUtil.h</a> provides common utility macros and structures for all supported bus types.
The usage of this file is optional.</p>
</li>
<li>
<p><a href="https://github.com/modelica/fmi-guides/blob/main/ls-bus-guide/headers/fmi3LsBusUtilCan.h">fmi3LsBusUtilCan.h</a> provides CAN, CAN FD and CAN XL explicit utility functions.</p>
<p><a href="https://github.com/modelica/fmi-ls-bus/blob/main/headers/fmi3LsBusUtilCan.h">fmi3LsBusUtilCan.h</a> provides CAN, CAN FD and CAN XL explicit utility macros.
The usage of this file is optional</p>
</li>
</ul>
</div>
Expand Down

0 comments on commit 78893fa

Please sign in to comment.