From 9d62367f9f084ffeae263e86ac51cbb0e3ec3d47 Mon Sep 17 00:00:00 2001 From: lbellomo Date: Sun, 29 Mar 2026 19:01:31 -0300 Subject: [PATCH] add GPIOTE meaning --- mdbook/src/15-interrupts/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdbook/src/15-interrupts/README.md b/mdbook/src/15-interrupts/README.md index aa9ec898..7c82b502 100644 --- a/mdbook/src/15-interrupts/README.md +++ b/mdbook/src/15-interrupts/README.md @@ -27,7 +27,7 @@ Let's define an ISR and configure an interrupt to "poke" the MB2 when Button A i {{#include examples/poke.rs}} ``` -The ISR handler function is "special". The name `GPIOTE` is required here, indicating +The ISR handler function is "special". The name `GPIOTE` (GPIO Tasks and Events) is required here, indicating that this ISR should be stored at the entry for the `GPIOTE` interrupt in the interrupt table. The `#[interrupt]` decoration is used at compile time to mark a function to be treated specially as @@ -72,4 +72,4 @@ Normally, once an ISR is complete the main program continues running just as it [NVIC and Interrupt Priority]: nvic-and-interrupt-priority.html [Registers]: ../09-registers/index.html [Rust Playground]: https://play.rust-lang.org/?version=stable&mode=debug&edition=2024 -[Rust book]: https://doc.rust-lang.org/book/ch20-05-macros.html \ No newline at end of file +[Rust book]: https://doc.rust-lang.org/book/ch20-05-macros.html