aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2020-12-13 14:52:16 +0100
committerEmil Fresk <emil.fresk@gmail.com>2020-12-13 14:52:16 +0100
commit62771839061aaa7dd518d40969bee609d7d2bda8 (patch)
treee1fec18f0cd9fe519961c8b72ea41e72ddfc294d /examples
parent0e134a41b5f53843b5e1c90cd0633ae56b7a3113 (diff)
Now handling SysTick as well
Diffstat (limited to 'examples')
-rw-r--r--examples/test_new_monotonic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test_new_monotonic.rs b/examples/test_new_monotonic.rs
index 3323c09..6788346 100644
--- a/examples/test_new_monotonic.rs
+++ b/examples/test_new_monotonic.rs
@@ -8,7 +8,7 @@ use rtic::app;
#[app(device = lm3s6965, dispatchers = [UART])]
mod app {
- #[monotonic(binds = SomeISR1)]
+ #[monotonic(binds = SysTick)]
type MyMono1 = hal::Mono1;
#[monotonic(binds = SomeISR2, default = true)]