diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2020-12-13 14:52:16 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2020-12-13 14:52:16 +0100 |
| commit | 62771839061aaa7dd518d40969bee609d7d2bda8 (patch) | |
| tree | e1fec18f0cd9fe519961c8b72ea41e72ddfc294d /examples | |
| parent | 0e134a41b5f53843b5e1c90cd0633ae56b7a3113 (diff) | |
Now handling SysTick as well
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/test_new_monotonic.rs | 2 |
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)] |
