Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch the frontpage to v1 #5

Merged
merged 1 commit into from
Mar 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions app/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,19 @@ ul {
li {
padding-bottom: 0.25em;
}
div.scroll-x {
overflow-x: auto;
}
table.reference {
border-collapse: collapse;
white-space: nowrap;
}
table.reference thead td {
border-bottom: #888 solid 1px;
}
table.reference td {
padding: 0.25em;
}
table.feed {
border-spacing: 0; /* this is necessary to remove phantom padding */
}
Expand Down
72 changes: 50 additions & 22 deletions app/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,21 +100,49 @@ <h1>How do I use UAVCAN?</h1>
<p>
Pick one of the free open source implementations (MIT licensed) for use in your application:
</p>
<ul>
<li>
<a href="https://github.com/UAVCAN/libuavcan">Libuavcan</a> &mdash;
full-featured, highly robust implementation in C++11 for embedded systems and GNU/Linux.
</li>
<li>
<a href="https://github.com/UAVCAN/libcanard">Libcanard</a> &mdash;
lightweight implementation in C99 for deeply embedded systems.
</li>
<li>
<a href="https://github.com/UAVCAN/pyuavcan">Pyuavcan</a> &mdash;
general-purpose, easy to use Python implementation for high-level operating systems
(Windows, GNU/Linux, macOS, etc.).
</li>
</ul>
<div class="scroll-x">
<table class="reference">
<thead>
<tr>
<td>Name</td>
<td>Transports</td>
<td>Language</td>
<td>Applications</td>
<td>Status</td>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/UAVCAN/libcanard">Libcanard</a></td>
<td>UAVCAN/CAN</td>
<td>C11</td>
<td>Embedded</td>
<td>Released</td>
</tr>
<tr>
<td><a href="https://github.com/UAVCAN/pyuavcan">Pyuavcan</a></td>
<td>Any</td>
<td>Python</td>
<td>HMI</td>
<td>Released</td>
</tr>
<tr>
<td><a href="https://github.com/UAVCAN/libuavcan">Libuavcan</a></td>
<td>Any</td>
<td>C++11</td>
<td>Embedded</td>
<td>Work-in-progress</td>
</tr>
<tr>
<td><a href="https://github.com/UAVCAN/uavcan.rs">uavcan.rs</a></td>
<td>Any</td>
<td>Rust</td>
<td>Embedded</td>
<td>Work-in-progress</td>
</tr>
</tbody>
</table>
</div>
<p>
None of the implementations suit your needs? Write your own!
UAVCAN is a very simple protocol; an experienced developer can easily create a custom implementation
Expand All @@ -125,24 +153,24 @@ <h1>How do I use UAVCAN?</h1>
</p>
<ul>
<li>
<a href="https://github.com/UAVCAN/Yukon">Yukon</a> &mdash;
<a href="https://github.com/UAVCAN/Yukon">Yukon</a> <em>(work-in-progress)</em> &mdash;
a web-based GUI tool for observing, debugging, and interacting with a UAVCAN bus.
This product is currently under active development; ETA 2020Q4.
</li>
<li>
<a href="https://github.com/UAVCAN/nunavut">Nunavut</a> &mdash;
a Python library and a CLI tool for generating code from DSDL definitions.
</li>
<li>
<a href="https://github.com/UAVCAN/pydsdl">PyDSDL</a> &mdash;
a DSDL compiler front end implemented in Python.
</li>
</ul>
<p>
The <a href="http://uavcan.github.io/">old version of the website</a> is still available
for historical reasons, but it will be taken down eventually.
It contains an older, pre-release edition of the specification and documentation entries that are now obsolete.
</p>
<p>
Please <a
href="https://forum.uavcan.org/t/referencing-the-uavcan-project-in-publications/766"
target="_blank"
>reference UAVCAN in scientific or technical publications</a>.
>reference UAVCAN</a> in scientific or technical publications.
</p>

{% set fallback_image = '/static/images/logo-square.svg' %}
Expand Down