aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Per Lindgren <per.lindgren@ltu.se> 2020-09-29 23:12:19 +0200
committerGravatar Per Lindgren <per.lindgren@ltu.se> 2020-09-29 23:12:19 +0200
commit45a83c00562e64db48f7195ecfb79f63841b451d (patch)
tree62831d9148eeea2bcd20fb4675d013b315855cf4
parent9fdf9955f1d0e8b2fb19fa3714846b37fac35fb8 (diff)
downloadrtic-systick.tar.gz
rtic-systick.tar.zst
rtic-systick.zip
systic example for qemu, longer delaysystick
-rw-r--r--examples/systic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/systic.rs b/examples/systic.rs
index 0e2fda8e..25499965 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(10000);
+ syst.set_reload(100000);
syst.enable_interrupt();
syst.enable_counter();