summaryrefslogtreecommitdiff
path: root/code/fe310/eos/timer.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2019-11-25 17:02:50 +0100
committerUros Majstorovic <majstor@majstor.org>2019-11-25 17:02:50 +0100
commit898780a7c2b410793ca0dc60887b8e985b777b14 (patch)
treea31a68f4957bb1f039500ab407caaafc52a8cf79 /code/fe310/eos/timer.h
parent45e12774e2a1d334b13684399e156b1a83d55777 (diff)
timer added sleep, timer_set gets msec
Diffstat (limited to 'code/fe310/eos/timer.h')
-rw-r--r--code/fe310/eos/timer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/code/fe310/eos/timer.h b/code/fe310/eos/timer.h
index 0807d96..dff9b2b 100644
--- a/code/fe310/eos/timer.h
+++ b/code/fe310/eos/timer.h
@@ -9,6 +9,7 @@ typedef void (*eos_timer_fptr_t) (unsigned char);
void eos_timer_init(void);
uint64_t eos_timer_get(unsigned char evt);
-void eos_timer_set(uint64_t tick, unsigned char evt, unsigned char b);
+void eos_timer_set(uint32_t msec, unsigned char evt, unsigned char b);
void eos_timer_clear(unsigned char evt);
void eos_timer_set_handler(unsigned char evt, eos_timer_fptr_t handler, uint8_t flags);
+void eos_timer_sleep(uint32_t msec);