rtic/book/en/src/SUMMARY.md

54 lines
2.3 KiB
Markdown
Raw Normal View History

2018-11-03 17:02:41 +01:00
# Summary
[Preface](./preface.md)
2020-07-14 16:01:14 +02:00
2023-05-05 18:58:06 +02:00
---
- [Starting a new project](./starting_a_project.md)
2020-06-11 19:18:29 +02:00
- [RTIC by example](./by-example.md)
2021-09-22 13:22:45 +02:00
- [The `app`](./by-example/app.md)
2023-05-05 19:21:02 +02:00
- [Hardware tasks](./by-example/hardware_tasks.md)
2023-01-28 21:57:43 +01:00
- [Software tasks & `spawn`](./by-example/software_tasks.md)
2018-11-03 17:02:41 +01:00
- [Resources](./by-example/resources.md)
2021-09-27 10:12:32 +02:00
- [The init task](./by-example/app_init.md)
- [The idle task](./by-example/app_idle.md)
2023-01-28 21:57:43 +01:00
- [Channel based communication](./by-example/channel.md)
- [Delay and Timeout using Monotonics](./by-example/delay.md)
2021-09-22 13:22:45 +02:00
- [The minimal app](./by-example/app_minimal.md)
2023-04-23 13:22:35 +02:00
- [Tips & Tricks](./by-example/tips/index.md)
- [Resource de-structure-ing](./by-example/tips/destructureing.md)
- [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)
- [Monotonics & the Timer Queue](./monotonic_impl.md)
2023-01-28 21:57:43 +01:00
- [RTIC vs. the world](./rtic_vs.md)
2023-05-20 11:45:23 +02:00
- [RTIC and Embassy](./rtic_and_embassy.md)
2021-09-22 13:22:45 +02:00
- [Awesome RTIC examples](./awesome_rtic.md)
2023-05-05 18:58:06 +02:00
---
- [Migrating from v1.0.x to v2.0.0](./migration_v1_v2.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)
2023-05-05 18:58:06 +02:00
---
- [Under the hood](./internals.md)
- [Cortex-M architectures](./internals/targets.md)
<!--- [Interrupt configuration](./internals/interrupt-configuration.md)-->
<!--- [Non-reentrancy](./internals/non-reentrancy.md)-->
<!--- [Access control](./internals/access.md)-->
<!--- [Late resources](./internals/late-resources.md)-->
<!--- [Critical sections](./internals/critical-sections.md)-->
<!--- [Ceiling analysis](./internals/ceilings.md)-->
<!--- [Software tasks](./internals/tasks.md)-->
<!--- [Timer queue](./internals/timer-queue.md)-->
2023-01-28 21:57:43 +01:00
<!-- - [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)
-->