mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Move deprecated migration guides to deprecated folder
This commit is contained in:
parent
ed465b0c3b
commit
3d97c9e431
11 changed files with 8 additions and 16 deletions
|
@ -23,11 +23,12 @@
|
||||||
<!-- - [`#[cfg(..)]` support](./by-example/tips.md) -->
|
<!-- - [`#[cfg(..)]` support](./by-example/tips.md) -->
|
||||||
- [RTIC vs. the world](./rtic_vs.md)
|
- [RTIC vs. the world](./rtic_vs.md)
|
||||||
- [Awesome RTIC examples](./awesome_rtic.md)
|
- [Awesome RTIC examples](./awesome_rtic.md)
|
||||||
<!-- - [Migration Guides](./migration.md)
|
- [Migrating from v1.0.x to v2.0.0](./migration_v1_v2.md)
|
||||||
- [v1.0.x to v2.0.0](./migration/migration_v2.md)
|
- [Rust Nightly & features](./migration_v1_v2/nightly.md)
|
||||||
- [v0.5.x to v1.0.x](./migration/migration_v5.md)
|
- [Migrating to `rtic-monotonics`](./migration_v1_v2/monotonics.md)
|
||||||
- [v0.4.x to v0.5.x](./migration/migration_v4.md)
|
- [Software tasks must now be `async`](./migration_v1_v2/async_tasks.md)
|
||||||
- [RTFM to RTIC](./migration/migration_rtic.md) -->
|
- [Using and understanding `rtic-sync`](./migration_v1_v2/rtic-sync.md)
|
||||||
|
- [A code example on migration](./migration_v1_v2/complete_example.md)
|
||||||
- [Under the hood](./internals.md)
|
- [Under the hood](./internals.md)
|
||||||
- [Cortex-M architectures](./internals/targets.md)
|
- [Cortex-M architectures](./internals/targets.md)
|
||||||
<!--- [Interrupt configuration](./internals/interrupt-configuration.md)-->
|
<!--- [Interrupt configuration](./internals/interrupt-configuration.md)-->
|
||||||
|
@ -44,13 +45,4 @@
|
||||||
- [Message passing & `capacity`](./by-example/message_passing.md)
|
- [Message passing & `capacity`](./by-example/message_passing.md)
|
||||||
- [Task priorities](./by-example/app_priorities.md)
|
- [Task priorities](./by-example/app_priorities.md)
|
||||||
- [Monotonic & `spawn_{at/after}`](./by-example/monotonic.md)
|
- [Monotonic & `spawn_{at/after}`](./by-example/monotonic.md)
|
||||||
-->
|
-->
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
- [Migrating from v1.0.x to v2.0.0](./migration/migration_v2.md)
|
|
||||||
- [Rust Nightly & features](./migration/migration_v2/nightly.md)
|
|
||||||
- [Migrating to `rtic-monotonics`](./migration/migration_v2/monotonics.md)
|
|
||||||
- [Software tasks must now be `async`](./migration/migration_v2/async_tasks.md)
|
|
||||||
- [Using and understanding `rtic-sync`](./migration/migration_v2/rtic-sync.md)
|
|
||||||
- [A code example on migration](./migration/migration_v2/complete_example.md)
|
|
|
@ -87,7 +87,7 @@ mod app {
|
||||||
# V2.0.0
|
# V2.0.0
|
||||||
|
|
||||||
``` rust
|
``` rust
|
||||||
{{ #include ../../../../../examples/stm32f3_blinky/src/main.rs }}
|
{{ #include ../../../../examples/stm32f3_blinky/src/main.rs }}
|
||||||
```
|
```
|
||||||
|
|
||||||
## A diff between the two projects
|
## A diff between the two projects
|
Loading…
Reference in a new issue