diff options
author | Daniel Silverstone <dsilvers@digital-scurf.org> | 2017-08-29 11:14:38 +0100 |
---|---|---|
committer | Daniel Silverstone <dsilvers@digital-scurf.org> | 2017-08-29 11:14:38 +0100 |
commit | a6be7146b3fec0bb4425bed4903d71ea153e4a6e (patch) | |
tree | 65dd34bf721ecc83f50e1f9388ddf1dbf9e1ff93 | |
download | stm32-usb-master.tar.bz2 |
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | COPYING | 26 | ||||
-rw-r--r-- | Cargo.toml | 6 | ||||
-rw-r--r-- | rust-toolchain | 1 | ||||
-rw-r--r-- | src/lib.rs | 2 |
5 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7aef303 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +target +*~ @@ -0,0 +1,26 @@ +Copyright (c) The Regents of the University of California. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3a9db39 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "stm32-usb" +version = "0.0.0" +authors = ["Daniel Silverstone <dsilvers@digital-scurf.org>"] + +[dependencies] diff --git a/rust-toolchain b/rust-toolchain new file mode 100644 index 0000000..bf867e0 --- /dev/null +++ b/rust-toolchain @@ -0,0 +1 @@ +nightly diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..fe42956 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,2 @@ + +#![no_std] |