aboutsummaryrefslogtreecommitdiffstats
path: root/src/sched.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-03-24 23:01:08 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-03-26 22:45:58 -0400
commit60e488eb177a35084669cb85d81131ce95eac959 (patch)
tree2a0b406f4e0b6e54ef495140573daf6426ca6b0e /src/sched.h
parent14340ac4df4c58bab4b5fc4c9e4746e33958c081 (diff)
downloadkutter-60e488eb177a35084669cb85d81131ce95eac959.tar.gz
kutter-60e488eb177a35084669cb85d81131ce95eac959.tar.xz
kutter-60e488eb177a35084669cb85d81131ce95eac959.zip
timer: Allow board code to define its own timer_is_before implementation
Move sched_is_before() from sched.c to timer_is_before() in the board specific timer code. This allows the board code to provide its own definition. Also, remove the sched_from_us() and sched_read_time() wrapper functions and change the callers to directly invoke timer_from_us() / timer_read_time(). Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/sched.h')
-rw-r--r--src/sched.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sched.h b/src/sched.h
index 0c1820c3..7a98257a 100644
--- a/src/sched.h
+++ b/src/sched.h
@@ -23,9 +23,6 @@ enum { SF_DONE=0, SF_RESCHEDULE=1 };
// sched.c
uint8_t sched_check_periodic(uint16_t time, uint16_t *pnext);
-uint32_t sched_from_us(uint32_t us);
-uint32_t sched_read_time(void);
-uint8_t sched_is_before(uint32_t time1, uint32_t time2);
void sched_add_timer(struct timer*);
void sched_del_timer(struct timer *del);
void sched_timer_kick(void);