mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Fix misspelling of "capacity"
This commit is contained in:
parent
61bb830285
commit
c61eb46149
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ Task dispatchers do *not* use any dynamic memory allocation. The memory required
|
||||||
to store messages is statically reserved. The framework will reserve enough
|
to store messages is statically reserved. The framework will reserve enough
|
||||||
space for every context to be able to spawn each task at most once. This is a
|
space for every context to be able to spawn each task at most once. This is a
|
||||||
sensible default but the "inbox" capacity of each task can be controlled using
|
sensible default but the "inbox" capacity of each task can be controlled using
|
||||||
the `capacicy` argument of the `task` attribute.
|
the `capacity` argument of the `task` attribute.
|
||||||
|
|
||||||
The example below sets the capacity of the software task `foo` to 4. If the
|
The example below sets the capacity of the software task `foo` to 4. If the
|
||||||
capacity is not specified then the second `spawn.foo` call in `UART0` would
|
capacity is not specified then the second `spawn.foo` call in `UART0` would
|
||||||
|
|
Loading…
Reference in a new issue