diff options
| author | datdenkikniet <jcdra1@gmail.com> | 2023-04-22 21:27:26 +0200 |
|---|---|---|
| committer | datdenkikniet <jcdra1@gmail.com> | 2023-05-11 19:20:58 +0200 |
| commit | 3d97c9e431d7fcb20b1b30bc15c34ccffee03c79 (patch) | |
| tree | 6842b788361e247cc50423bee972cc7a3c6ba974 | |
| parent | ed465b0c3b8b4c588f5cc7945af79a504f928cc8 (diff) | |
Move deprecated migration guides to deprecated folder
| -rw-r--r-- | book/en/deprecated/migration.md (renamed from book/en/src/migration.md) | 0 | ||||
| -rw-r--r-- | book/en/deprecated/migration/migration_rtic.md (renamed from book/en/src/migration/migration_rtic.md) | 0 | ||||
| -rw-r--r-- | book/en/deprecated/migration/migration_v4.md (renamed from book/en/src/migration/migration_v4.md) | 0 | ||||
| -rw-r--r-- | book/en/deprecated/migration/migration_v5.md (renamed from book/en/src/migration/migration_v5.md) | 0 | ||||
| -rw-r--r-- | book/en/src/SUMMARY.md | 22 | ||||
| -rw-r--r-- | book/en/src/migration_v1_v2.md (renamed from book/en/src/migration/migration_v2.md) | 0 | ||||
| -rw-r--r-- | book/en/src/migration_v1_v2/async_tasks.md (renamed from book/en/src/migration/migration_v2/async_tasks.md) | 0 | ||||
| -rw-r--r-- | book/en/src/migration_v1_v2/complete_example.md (renamed from book/en/src/migration/migration_v2/complete_example.md) | 2 | ||||
| -rw-r--r-- | book/en/src/migration_v1_v2/monotonics.md (renamed from book/en/src/migration/migration_v2/monotonics.md) | 0 | ||||
| -rw-r--r-- | book/en/src/migration_v1_v2/nightly.md (renamed from book/en/src/migration/migration_v2/nightly.md) | 0 | ||||
| -rw-r--r-- | book/en/src/migration_v1_v2/rtic-sync.md (renamed from book/en/src/migration/migration_v2/rtic-sync.md) | 0 |
11 files changed, 8 insertions, 16 deletions
diff --git a/book/en/src/migration.md b/book/en/deprecated/migration.md index f52b0a5..f52b0a5 100644 --- a/book/en/src/migration.md +++ b/book/en/deprecated/migration.md diff --git a/book/en/src/migration/migration_rtic.md b/book/en/deprecated/migration/migration_rtic.md index c027da3..c027da3 100644 --- a/book/en/src/migration/migration_rtic.md +++ b/book/en/deprecated/migration/migration_rtic.md diff --git a/book/en/src/migration/migration_v4.md b/book/en/deprecated/migration/migration_v4.md index d1a7ebe..d1a7ebe 100644 --- a/book/en/src/migration/migration_v4.md +++ b/book/en/deprecated/migration/migration_v4.md diff --git a/book/en/src/migration/migration_v5.md b/book/en/deprecated/migration/migration_v5.md index 5a8fabc..5a8fabc 100644 --- a/book/en/src/migration/migration_v5.md +++ b/book/en/deprecated/migration/migration_v5.md diff --git a/book/en/src/SUMMARY.md b/book/en/src/SUMMARY.md index ceed24e..8b19bf1 100644 --- a/book/en/src/SUMMARY.md +++ b/book/en/src/SUMMARY.md @@ -23,11 +23,12 @@ <!-- - [`#[cfg(..)]` support](./by-example/tips.md) --> - [RTIC vs. the world](./rtic_vs.md) - [Awesome RTIC examples](./awesome_rtic.md) -<!-- - [Migration Guides](./migration.md) - - [v1.0.x to v2.0.0](./migration/migration_v2.md) - - [v0.5.x to v1.0.x](./migration/migration_v5.md) - - [v0.4.x to v0.5.x](./migration/migration_v4.md) - - [RTFM to RTIC](./migration/migration_rtic.md) --> +- [Migrating from v1.0.x to v2.0.0](./migration_v1_v2.md) + - [Rust Nightly & features](./migration_v1_v2/nightly.md) + - [Migrating to `rtic-monotonics`](./migration_v1_v2/monotonics.md) + - [Software tasks must now be `async`](./migration_v1_v2/async_tasks.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) - [Cortex-M architectures](./internals/targets.md) <!--- [Interrupt configuration](./internals/interrupt-configuration.md)--> @@ -44,13 +45,4 @@ - [Message passing & `capacity`](./by-example/message_passing.md) - [Task priorities](./by-example/app_priorities.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)
\ No newline at end of file + -->
\ No newline at end of file diff --git a/book/en/src/migration/migration_v2.md b/book/en/src/migration_v1_v2.md index 96fa231..96fa231 100644 --- a/book/en/src/migration/migration_v2.md +++ b/book/en/src/migration_v1_v2.md diff --git a/book/en/src/migration/migration_v2/async_tasks.md b/book/en/src/migration_v1_v2/async_tasks.md index 54e0893..54e0893 100644 --- a/book/en/src/migration/migration_v2/async_tasks.md +++ b/book/en/src/migration_v1_v2/async_tasks.md diff --git a/book/en/src/migration/migration_v2/complete_example.md b/book/en/src/migration_v1_v2/complete_example.md index b68f1ef..dc29b25 100644 --- a/book/en/src/migration/migration_v2/complete_example.md +++ b/book/en/src/migration_v1_v2/complete_example.md @@ -87,7 +87,7 @@ mod app { # V2.0.0 ``` rust -{{ #include ../../../../../examples/stm32f3_blinky/src/main.rs }} +{{ #include ../../../../examples/stm32f3_blinky/src/main.rs }} ``` ## A diff between the two projects diff --git a/book/en/src/migration/migration_v2/monotonics.md b/book/en/src/migration_v1_v2/monotonics.md index a8b0dba..a8b0dba 100644 --- a/book/en/src/migration/migration_v2/monotonics.md +++ b/book/en/src/migration_v1_v2/monotonics.md diff --git a/book/en/src/migration/migration_v2/nightly.md b/book/en/src/migration_v1_v2/nightly.md index 09f6e33..09f6e33 100644 --- a/book/en/src/migration/migration_v2/nightly.md +++ b/book/en/src/migration_v1_v2/nightly.md diff --git a/book/en/src/migration/migration_v2/rtic-sync.md b/book/en/src/migration_v1_v2/rtic-sync.md index fefde03..fefde03 100644 --- a/book/en/src/migration/migration_v2/rtic-sync.md +++ b/book/en/src/migration_v1_v2/rtic-sync.md |
