|
14 | 14 | Enforce pin and peripheral configuration at compile time. Guarantee that resources won't be used by
|
15 | 15 | unintended parts of your application.
|
16 | 16 | </p>
|
17 |
| - <a href="https://github.com/rust-embedded/book/issues/5" class="button button-secondary">Learn more</a> |
| 17 | + <a href="https://docs.rust-embedded.org/book/static-guarantees/" class="button button-secondary">Learn more</a> |
18 | 18 | </div>
|
19 | 19 | <div class="four columns" id="flexible-memory-management">
|
20 | 20 | <div class="domain-icon">
|
|
25 | 25 | Dynamic memory allocation is optional. Use a global allocator and dynamic data structures.
|
26 | 26 | Or leave out the heap altogether and statically allocate everything.
|
27 | 27 | </p>
|
28 |
| - <a href="https://github.com/rust-embedded/book/issues/8" class="button button-secondary">Learn more</a> |
| 28 | + <a href="https://docs.rust-embedded.org/book/collections/" class="button button-secondary">Learn more</a> |
29 | 29 | </div>
|
30 | 30 | <div class="four columns" id="safe-concurrency">
|
31 | 31 | <div class="domain-icon">
|
|
36 | 36 | Rust makes it impossible to accidentally share state between threads.
|
37 | 37 | Use any concurrency approach you like, and you'll still get Rust's strong guarantees.
|
38 | 38 | </p>
|
39 |
| - <a href="https://github.com/rust-embedded/book/issues/7" class="button button-secondary">Learn more</a> |
| 39 | + <a href="https://docs.rust-embedded.org/book/concurrency/" class="button button-secondary">Learn more</a> |
40 | 40 | </div>
|
41 | 41 | </div>
|
42 | 42 | <div class="row">
|
|
49 | 49 | Integrate Rust into your existing C codebase or leverage an existing SDK to write a Rust
|
50 | 50 | application.
|
51 | 51 | </p>
|
52 |
| - <a href="https://github.com/rust-embedded/book/issues/1" class="button button-secondary">Learn more</a> |
| 52 | + <a href="https://docs.rust-embedded.org/book/interoperability/" class="button button-secondary">Learn more</a> |
53 | 53 | </div>
|
54 | 54 | <div class="four columns" id="portability">
|
55 | 55 | <div class="domain-icon">
|
|
60 | 60 | Write a library or driver once, and use it with a variety of systems, ranging
|
61 | 61 | from very small microcontrollers to powerful SBCs.
|
62 | 62 | </p>
|
63 |
| - <a href="https://github.com/rust-embedded/book/issues/6" class="button button-secondary">Learn more</a> |
| 63 | + <a href="https://docs.rust-embedded.org/book/portability/" class="button button-secondary">Learn more</a> |
64 | 64 | </div>
|
65 | 65 | <div class="four columns">
|
66 | 66 | <div class="domain-icon">
|
|
0 commit comments