mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Disable things which needs more work to be complete
This commit is contained in:
parent
ebfabd7b30
commit
b5ff671f89
3 changed files with 13 additions and 10 deletions
|
@ -15,11 +15,11 @@
|
|||
- [v0.4.x to v0.5.x](./migration/migration_v4.md)
|
||||
- [RTFM to RTIC](./migration/migration_rtic.md)
|
||||
- [Under the hood](./internals.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)
|
||||
<!--- [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)-->
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# Under the hood
|
||||
|
||||
**This is chapter is currently work in progress,
|
||||
it will re-appear once it is more complete**
|
||||
|
||||
This section describes the internals of the RTIC framework at a *high level*.
|
||||
Low level details like the parsing and code generation done by the procedural
|
||||
macro (`#[app]`) will not be explained here. The focus will be the analysis of
|
||||
|
|
|
@ -9,9 +9,9 @@ This book contains user level documentation for the Real-Time Interrupt-driven C
|
|||
|
||||
Formerly known as Real-Time For the Masses.
|
||||
|
||||
There is a translation of this book in [Russian].
|
||||
<!--There is a translation of this book in [Russian].-->
|
||||
|
||||
[Russian]: ../ru/index.html
|
||||
<!--[Russian]: ../ru/index.html-->
|
||||
|
||||
This is the documentation of v0.6.x of RTIC; for the documentation of version
|
||||
|
||||
|
|
Loading…
Reference in a new issue