diff options
author | 2020-09-29 23:11:40 +0200 | |
---|---|---|
committer | 2020-09-29 23:11:40 +0200 | |
commit | 9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8 (patch) | |
tree | 24968315372966a56bed16bb42155f6b5e616015 | |
parent | 6c2b02a93750a8493a5d9a5553143bd74b2a6596 (diff) | |
download | rtic-9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8.tar.gz rtic-9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8.tar.zst rtic-9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8.zip |
systic example for qemu
-rw-r--r-- | examples/systic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/systic.rs b/examples/systic.rs index 8b5bba76..0e2fda8e 100644 --- a/examples/systic.rs +++ b/examples/systic.rs @@ -14,7 +14,7 @@ const APP: () = { #[init] fn init(cx: init::Context) { let mut syst = cx.core.SYST; - syst.set_reload(1000); + syst.set_reload(10000); syst.enable_interrupt(); syst.enable_counter(); |