diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-06-01 12:04:01 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-06-02 17:52:11 -0400 |
commit | ed103822f5501f08c5d23216a1a505dbdd163f6c (patch) | |
tree | 17363ef740f2328076282e226539ffa85adc19e6 /src/simulator/main.c | |
parent | d68cb264c421be687c53066df91c7ffb661ab2d9 (diff) | |
download | kutter-ed103822f5501f08c5d23216a1a505dbdd163f6c.tar.gz kutter-ed103822f5501f08c5d23216a1a505dbdd163f6c.tar.xz kutter-ed103822f5501f08c5d23216a1a505dbdd163f6c.zip |
sched: Change sched_from_ms() to sched_from_us()
Some code may require micro-second precision so update sched_from_ms()
to use micro-seconds.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/simulator/main.c')
-rw-r--r-- | src/simulator/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simulator/main.c b/src/simulator/main.c index 2d43a138..e871864a 100644 --- a/src/simulator/main.c +++ b/src/simulator/main.c @@ -17,7 +17,7 @@ uint8_t Interrupt_off; ****************************************************************/ uint32_t -timer_from_ms(uint32_t ms) +timer_from_us(uint32_t us) { return 0; // XXX } |