diff --git a/book/en/src/by-example/hardware_tasks.md b/book/en/src/by-example/hardware_tasks.md index cb0cf9f68a..d5968761dc 100644 --- a/book/en/src/by-example/hardware_tasks.md +++ b/book/en/src/by-example/hardware_tasks.md @@ -1,6 +1,6 @@ # Hardware tasks -In it's core RTIC is based on using the interrupt controller in the hardware to do scheduling and +At its core RTIC is based on using the interrupt controller in the hardware to do scheduling and run tasks, as all tasks in the framework are run as interrupt handlers (except `#[init]` and `#[idle]`). This also means that you can directly bind tasks to interrupt handlers.