https://github.com/nerves-project-attic/usb_gadget
Configure USB Gadget devices
https://github.com/nerves-project-attic/usb_gadget
Last synced: about 2 months ago
JSON representation
Configure USB Gadget devices
- Host: GitHub
- URL: https://github.com/nerves-project-attic/usb_gadget
- Owner: nerves-project-attic
- License: apache-2.0
- Created: 2018-08-04T20:21:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-28T20:12:43.000Z (over 3 years ago)
- Last Synced: 2023-03-06T20:35:19.868Z (over 2 years ago)
- Language: Elixir
- Size: 12.7 KB
- Stars: 7
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# USBGadget
Configure USB Gadget functions on your Nerves-based embedded device using
ConfigFS.
## 🚨 This project is work-in-progress 🚨
The intention is that it will become a dependency of [`nerves_init_gadget`] to
allow for automatic configuration of USB Gadget devices as well as an API for
developers to configure their own custom USB Gadget configurations.
[nerves_init_gadget]: https://github.com/nerves-project/nerves_init_gadget
## Installation
To use it directly in your project (i.e. without `nerves_init_gadget`, add
`usb_gadget` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:usb_gadget, "~> 0.1.0"}
]
end
```
Documentation can be found at
[https://hexdocs.pm/usb_gadget](https://hexdocs.pm/usb_gadget).