diff options
Diffstat (limited to 'examples/pool.rs')
| -rw-r--r-- | examples/pool.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/pool.rs b/examples/pool.rs index 38d2b6e..824d5bd 100644 --- a/examples/pool.rs +++ b/examples/pool.rs @@ -59,8 +59,11 @@ const APP: () = { // drop(x); } + // RTIC requires that unused interrupts are declared in an extern block when + // using software tasks; these free interrupts will be used to dispatch the + // software tasks. extern "C" { - fn UART0(); - fn UART1(); + fn SSI0(); + fn QEI0(); } }; |
