summaryrefslogtreecommitdiff
path: root/code/fe310/eos/timer.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-03-11 16:28:27 +0100
committerUros Majstorovic <majstor@majstor.org>2020-03-11 16:28:27 +0100
commitab1006d27417cc831150877ec46fbc13ffeddb53 (patch)
tree21a45e41483b84443f57a68360dae78e7fcabecc /code/fe310/eos/timer.h
parentc4dfa25d8d30f2812ae48dea1ffb0f326d46ae9f (diff)
timer fix
Diffstat (limited to 'code/fe310/eos/timer.h')
-rw-r--r--code/fe310/eos/timer.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/code/fe310/eos/timer.h b/code/fe310/eos/timer.h
index edf422d..2ac53f7 100644
--- a/code/fe310/eos/timer.h
+++ b/code/fe310/eos/timer.h
@@ -6,12 +6,17 @@
#define EOS_TIMER_MAX_ETYPE 4
+#define EOS_TIMER_NONE 0xffffffff
+#define EOS_TIMER_RTC_FREQ 32768
+
typedef void (*eos_timer_handler_t) (unsigned char);
void eos_timer_init(void);
void eos_timer_set_handler(unsigned char evt, eos_timer_handler_t handler);
-uint64_t eos_timer_get(unsigned char evt);
-void eos_timer_set(uint32_t msec, unsigned char evt, unsigned char b);
+uint32_t eos_timer_get(unsigned char evt);
+void eos_timer_set(uint32_t msec, unsigned char evt);
void eos_timer_clear(unsigned char evt);
-void eos_timer_sleep(uint32_t msec);
+
+void eos_time_sleep(uint32_t msec);
+uint64_t eos_time_get_tick(void);