bors[bot] 482d412a92 Merge #86
86: Chapter 2 updates r=therealprof a=adamgreen

This PR includes a few chapter 2 updates:

* Have mdBook not wrap code snippets in "fn main() {}" by setting language to "rust,ignore".
For example before the following would be copied to the clipboard:
```rust
fn main() {
// Exception handler for the SysTick (System Timer) exception
fn SysTick() {
    // ..
}
}
```
After this change, the following is copied to the clipboard:
```rust
// Exception handler for the SysTick (System Timer) exception
fn SysTick() {
    // ..
}
```

* I also fixed some code samples so that they compile without errors/warnings. The biggest change was to a SysTick sample in the "Memory Mapped Registers" section to properly setup the SysTick peripheral to countdown 1000 ticks.
* Some minor text updates.

Co-authored-by: Adam Green <adamgreen@users.noreply.github.com>
2018-11-17 15:38:38 +00:00
2018-08-10 01:26:34 -05:00
2018-11-04 23:49:05 +01:00
2018-11-17 15:38:38 +00:00
2018-08-10 00:00:41 -05:00
2018-09-13 20:51:02 +02:00
2018-11-07 00:23:03 -08:00

[Work in Progress] - The Embedded Rust Book

Documentation on how to use the Rust Programming Language to develop firmware for bare metal (microcontroller) devices

This project is developed and maintained by the Resources team.

See the issue tracker for more details. This is a very early work in progress.

Online Copies of this Book

This book is located at https://docs.rust-embedded.org/book/

License

The Embedded Rust Book (this project) is distributed under the following licenses:

  • The code samples and free-standing Cargo projects contained within this book are licensed under the terms of both the MIT License and the Apache License v2.0.
  • The written prose contained within this book is licensed under the terms of the Creative Commons CC-BY-SA v4.0 license.

Copies of the licenses used by this project may also be found here:

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

Code of Conduct

Contribution to this crate is organized under the terms of the Rust Code of Conduct, the maintainer of this crate, the Resources team, promises to intervene to uphold that code of conduct.

Description
rust 嵌入式编程书籍的翻译,原书地址 https://rust-embedded.github.io/book/
Readme 2.5 MiB
Languages
JavaScript 55.3%
HTML 43.7%
CSS 1%