diff options
| author | Cyril Marpaud <9333398+cyril-marpaud@users.noreply.github.com> | 2024-05-01 13:32:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-01 11:32:08 +0000 |
| commit | d9a76b65752d779cbf36a6f43bc36aefbf9a73bf (patch) | |
| tree | 429ebf46c9373a4bb1732a182e99d62c4b8fa8fb /book/en | |
| parent | 5d05d607eefde4a659150f8180457b0eed37bc8c (diff) | |
fix: typos (#930)
Diffstat (limited to 'book/en')
| -rw-r--r-- | book/en/src/rtic_and_embassy.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/rtic_and_embassy.md b/book/en/src/rtic_and_embassy.md index c1347aa..12a782d 100644 --- a/book/en/src/rtic_and_embassy.md +++ b/book/en/src/rtic_and_embassy.md @@ -4,7 +4,7 @@ Embassy provides both Hardware Abstraction Layers, and an executor/runtime, while RTIC aims to only provide an execution framework. For example, embassy provides `embassy-stm32` (a HAL), and `embassy-executor` (an executor). On the other hand, RTIC provides the framework in the form of [`rtic`], and the user is responsible for providing a PAC and HAL implementation (generally from the [`stm32-rs`] project). -Additionally, RTIC aims to provide exclusive access to resources on as low a level of possible, ideally guarded by some form of hardware protection. This allows for access to hardware while not necessarily requiring locking mechanisms on the software level. +Additionally, RTIC aims to provide exclusive access to resources at as low a level as possible, ideally guarded by some form of hardware protection. This allows for access to hardware without necessarily requiring locking mechanisms at the software level. ## Mixing use of Embassy and RTIC |
