-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from jumpstarter-dev/build-contrib-driver-docs
Build contrib driver docs
- Loading branch information
Showing
8 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# CAN driver | ||
|
||
The CAN driver is a driver for using CAN bus connections. | ||
|
||
```{eval-rst} | ||
.. autoclass:: jumpstarter_driver_can.client.CanClient | ||
:members: | ||
``` | ||
|
||
```{eval-rst} | ||
.. autoclass:: jumpstarter_driver_can.client.IsoTpClient | ||
:members: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Driver Packages | ||
|
||
Driver packages from the [contrib](https://github.com/jumpstarter-dev/jumpstarter/tree/main/contrib) | ||
directory are additional drivers that are not part of | ||
the jumpstarter core package, we package them separately to keep the core as | ||
lightweight and dependency-free as possible. | ||
|
||
```{toctree} | ||
ustreamer.md | ||
can.md | ||
sdwire.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# SDWire driver | ||
|
||
The SDWire driver is an storgate multiplexer driver for using the SDWire | ||
multiplexer. This device multiplexes an SD card between the DUT and the | ||
exporter host. | ||
|
||
The SDWire driver implements the `StorageMuxClient` class, which is a generic | ||
storage class. | ||
|
||
```{eval-rst} | ||
.. autoclass:: jumpstarter.drivers.storage.client.StorageMuxClient | ||
:members: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Ustreamer driver | ||
|
||
The Ustreamer driver is a driver for using the ustreamer video streaming server | ||
driven by the jumpstarter exporter. This driver takes a video device and | ||
exposes both snapshot and streaming interfaces. | ||
|
||
```{eval-rst} | ||
.. autoclass:: jumpstarter_driver_ustreamer.client.UStreamerClient | ||
:members: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# API Reference | ||
|
||
This section provides details on the Jumpstarter core API and contrib drivers. | ||
|
||
```{toctree} | ||
drivers.md | ||
contrib/index.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters