diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-03-04 21:10:24 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-04 21:10:24 +0000 |
| commit | 7c7d6558f6d9c50fbb4d2487c98c9a5be15f2f7b (patch) | |
| tree | 80a47f0dc40059014e9448c4c2eb34c54dff45fe /book/en/src/SUMMARY.md | |
| parent | 1c5db277e4161470136dbd2a11e914ff1d383581 (diff) | |
| parent | 98c5490d94950608d31cd5ad9dd260f2f853735c (diff) | |
Merge #694
694: RTIC 2 r=AfoHT a=korken89
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
Diffstat (limited to 'book/en/src/SUMMARY.md')
| -rw-r--r-- | book/en/src/SUMMARY.md | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/book/en/src/SUMMARY.md b/book/en/src/SUMMARY.md index 853f3a5..587117c 100644 --- a/book/en/src/SUMMARY.md +++ b/book/en/src/SUMMARY.md @@ -4,15 +4,13 @@ - [RTIC by example](./by-example.md) - [The `app`](./by-example/app.md) + - [Hardware tasks & `pend`](./by-example/hardware_tasks.md) + - [Software tasks & `spawn`](./by-example/software_tasks.md) - [Resources](./by-example/resources.md) - [The init task](./by-example/app_init.md) - [The idle task](./by-example/app_idle.md) - - [Defining tasks](./by-example/app_task.md) - - [Hardware tasks](./by-example/hardware_tasks.md) - - [Software tasks & `spawn`](./by-example/software_tasks.md) - - [Message passing & `capacity`](./by-example/message_passing.md) - - [Task priorities](./by-example/app_priorities.md) - - [Monotonic & `spawn_{at/after}`](./by-example/monotonic.md) + - [Channel based communication](./by-example/channel.md) + - [Delay and Timeout](./by-example/delay.md) - [Starting a new project](./by-example/starting_a_project.md) - [The minimal app](./by-example/app_minimal.md) - [Tips & Tricks](./by-example/tips.md) @@ -21,13 +19,14 @@ - [Avoid copies when message passing](./by-example/tips_indirection.md) - [`'static` super-powers](./by-example/tips_static_lifetimes.md) - [Inspecting generated code](./by-example/tips_view_code.md) - - [Running tasks from RAM](./by-example/tips_from_ram.md) + <!-- - [Running tasks from RAM](./by-example/tips_from_ram.md) --> <!-- - [`#[cfg(..)]` support](./by-example/tips.md) --> +- [RTIC vs. the world](./rtic_vs.md) - [Awesome RTIC examples](./awesome_rtic.md) -- [Migration Guides](./migration.md) +<!-- - [Migration Guides](./migration.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) + - [RTFM to RTIC](./migration/migration_rtic.md) --> - [Under the hood](./internals.md) - [Cortex-M architectures](./internals/targets.md) <!--- [Interrupt configuration](./internals/interrupt-configuration.md)--> @@ -38,3 +37,10 @@ <!--- [Ceiling analysis](./internals/ceilings.md)--> <!--- [Software tasks](./internals/tasks.md)--> <!--- [Timer queue](./internals/timer-queue.md)--> + + <!-- - [Defining tasks](./by-example/app_task.md) --> + <!-- - [Software tasks & `spawn`](./by-example/software_tasks.md) + - [Message passing & `capacity`](./by-example/message_passing.md) + - [Task priorities](./by-example/app_priorities.md) + - [Monotonic & `spawn_{at/after}`](./by-example/monotonic.md) + -->
\ No newline at end of file |
