mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
systic example for qemu, longer delay
This commit is contained in:
parent
9fdf9955f1
commit
45a83c0056
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ const APP: () = {
|
||||||
#[init]
|
#[init]
|
||||||
fn init(cx: init::Context) {
|
fn init(cx: init::Context) {
|
||||||
let mut syst = cx.core.SYST;
|
let mut syst = cx.core.SYST;
|
||||||
syst.set_reload(10000);
|
syst.set_reload(100000);
|
||||||
syst.enable_interrupt();
|
syst.enable_interrupt();
|
||||||
syst.enable_counter();
|
syst.enable_counter();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue