diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-06-05 14:58:12 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-06-13 23:18:58 -0400 |
commit | 9f8817a47e10f35e8008e40576d2bc54157c2767 (patch) | |
tree | 7121f7fa659ff234651d988aed6eead6ca7d67c0 /src/sched.c | |
parent | 9971f999b382ef51a3a3d1db4a3385b7cc23a3a0 (diff) | |
download | kutter-9f8817a47e10f35e8008e40576d2bc54157c2767.tar.gz kutter-9f8817a47e10f35e8008e40576d2bc54157c2767.tar.xz kutter-9f8817a47e10f35e8008e40576d2bc54157c2767.zip |
generic: Move board timer.h files into generic/misc.h
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/sched.c')
-rw-r--r-- | src/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sched.c b/src/sched.c index 2ac1a929..539cb57b 100644 --- a/src/sched.c +++ b/src/sched.c @@ -9,7 +9,7 @@ #include <stddef.h> // NULL #include "autoconf.h" // CONFIG_* #include "board/irq.h" // irq_save -#include "board/timer.h" // timer_from_us +#include "board/misc.h" // timer_from_us #include "command.h" // shutdown #include "sched.h" // sched_from_us #include "stepper.h" // stepper_event |