aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Per Lindgren <per.lindgren@ltu.se> 2020-09-29 23:11:40 +0200
committerGravatar Per Lindgren <per.lindgren@ltu.se> 2020-09-29 23:11:40 +0200
commit9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8 (patch)
tree24968315372966a56bed16bb42155f6b5e616015
parent6c2b02a93750a8493a5d9a5553143bd74b2a6596 (diff)
downloadrtic-9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8.tar.gz
rtic-9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8.tar.zst
rtic-9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8.zip
systic example for qemu
-rw-r--r--examples/systic.rs2
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();