-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial release that provides a mock UsbBus implementation for usb-device v0.2 and v0.3.
- Loading branch information
1 parent
276dd8b
commit 519ff8a
Showing
2 changed files
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!--- | ||
Copyright (C) Robin Krahl <[email protected]> | ||
SPDX-License-Identifier: CC0-1.0 | ||
--> | ||
|
||
# Changelog | ||
|
||
## [v0.1.0](https://github.com/Nitrokey/mock-usb-bus/releases/tag/v0.1.0) (2024-12-16) | ||
|
||
Initial release that provides a mock `UsbBus` implementation for `usb-device` v0.2 and v0.3. |
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,25 @@ | ||
<!--- | ||
Copyright (C) Robin Krahl <[email protected]> | ||
SPDX-License-Identifier: CC0-1.0 | ||
--> | ||
|
||
# mock-usb-bus | ||
|
||
A mock USB bus implementation for use with the [`usb-device`][] crate. | ||
|
||
[`usb-device`]: https://github.com/rust-embedded-community/usb-device | ||
|
||
See [`tests/ping.rs`](./tests/ping.rs) for an example with a custom `UsbClass` implementation. | ||
|
||
## License | ||
|
||
This project is dual-licensed under the [Apache-2.0][] and [MIT][] licenses. | ||
The documentation and examples contained in this repository are licensed under the [Creative Commons Zero][CC0] license. | ||
You can find a copy of the license texts in the `LICENSES` directory. | ||
|
||
This project complies with [version 3.0 of the REUSE specification][reuse]. | ||
|
||
[Apache-2.0]: https://opensource.org/licenses/Apache-2.0 | ||
[MIT]: https://opensource.org/licenses/MIT | ||
[CC0]: https://creativecommons.org/publicdomain/zero/1.0/ | ||
[reuse]: https://reuse.software/practices/3.0/ |