Skip to content

Commit 5407f38

Browse files
committed
Addressing review
1 parent d7b4ae9 commit 5407f38

File tree

4 files changed

+13
-30
lines changed

4 files changed

+13
-30
lines changed

README.md

Lines changed: 12 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,26 @@
1-
[![crates.io](https://img.shields.io/crates/d/riscv.svg)](https://crates.io/crates/riscv)
2-
[![crates.io](https://img.shields.io/crates/v/riscv.svg)](https://crates.io/crates/riscv)
3-
[![Build Status](https://travis-ci.org/rust-embedded/riscv.svg?branch=master)](https://travis-ci.org/rust-embedded/riscv)
1+
# RISC-V crates
42

5-
# `riscv`
3+
This repository contains various crates useful for writing Rust programs on RISC-V microcontrollers:
64

7-
> Low level access to RISC-V processors
5+
* [`riscv`]: CPU peripheral access and intrinsics
6+
* [`riscv-rt`]: Startup code and interrupt handling
87

9-
This project is developed and maintained by the [RISC-V team][team].
10-
11-
## [Documentation](https://docs.rs/crate/riscv)
12-
13-
## Minimum Supported Rust Version (MSRV)
14-
15-
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
16-
compile with older versions but that may change in any new patch release.
178

18-
## License
19-
20-
Copyright 2019-2022 [RISC-V team][team]
9+
This project is developed and maintained by the [RISC-V team][team].
2110

22-
Permission to use, copy, modify, and/or distribute this software for any purpose
23-
with or without fee is hereby granted, provided that the above copyright notice
24-
and this permission notice appear in all copies.
11+
### Contribution
2512

26-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
27-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
28-
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
29-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
30-
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
31-
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
32-
THIS SOFTWARE.
13+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the
14+
work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
15+
additional terms or conditions.
3316

3417
## Code of Conduct
3518

3619
Contribution to this crate is organized under the terms of the [Rust Code of
3720
Conduct][CoC], the maintainer of this crate, the [RISC-V team][team], promises
3821
to intervene to uphold that code of conduct.
3922

40-
[CoC]: CODE_OF_CONDUCT.md
23+
[`riscv`]: https://crates.io/crates/riscv
24+
[`riscv-rt`]: https://crates.io/crates/riscv-rt
4125
[team]: https://github.com/rust-embedded/wg#the-risc-v-team
26+
[CoC]: CODE_OF_CONDUCT.md

riscv-rt/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[![crates.io](https://img.shields.io/crates/d/riscv-rt.svg)](https://crates.io/crates/riscv-rt)
22
[![crates.io](https://img.shields.io/crates/v/riscv-rt.svg)](https://crates.io/crates/riscv-rt)
3-
[![Build Status](https://travis-ci.org/rust-embedded/riscv-rt.svg?branch=master)](https://travis-ci.org/rust-embedded/riscv-rt)
43

54
# `riscv-rt`
65

riscv-rt/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation = "https://docs.rs/riscv-rt"
99
keywords = ["riscv", "runtime", "startup"]
1010
license = "MIT OR Apache-2.0"
1111
name = "riscv-rt-macros"
12-
repository = "https://github.com/rust-embedded/riscv-rt"
12+
repository = "https://github.com/rust-embedded/riscv"
1313
version = "0.2.0"
1414

1515
[lib]

riscv/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[![crates.io](https://img.shields.io/crates/d/riscv.svg)](https://crates.io/crates/riscv)
22
[![crates.io](https://img.shields.io/crates/v/riscv.svg)](https://crates.io/crates/riscv)
3-
[![Build Status](https://travis-ci.org/rust-embedded/riscv.svg?branch=master)](https://travis-ci.org/rust-embedded/riscv)
43

54
# `riscv`
65

0 commit comments

Comments
 (0)