You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.5 KiB
78 lines
1.5 KiB
#include <stdarg.h> |
|
#include <stdio.h> |
|
|
|
#include <AP_HAL/AP_HAL.h> |
|
#include <AP_HAL/system.h> |
|
|
|
#include "Scheduler.h" |
|
|
|
extern const AP_HAL::HAL& hal; |
|
|
|
using HALSITL::SITLScheduler; |
|
|
|
namespace AP_HAL { |
|
|
|
static struct { |
|
struct timeval start_time; |
|
} state; |
|
|
|
void init() |
|
{ |
|
gettimeofday(&state.start_time, NULL); |
|
} |
|
|
|
void panic(const char *errormsg, ...) |
|
{ |
|
va_list ap; |
|
|
|
va_start(ap, errormsg); |
|
vprintf(errormsg, ap); |
|
va_end(ap); |
|
printf("\n"); |
|
|
|
for(;;); |
|
} |
|
|
|
uint32_t micros() |
|
{ |
|
return micros64() & 0xFFFFFFFF; |
|
} |
|
|
|
uint32_t millis() |
|
{ |
|
return millis64() & 0xFFFFFFFF; |
|
} |
|
|
|
uint64_t micros64() |
|
{ |
|
const SITLScheduler* scheduler = SITLScheduler::from(hal.scheduler); |
|
uint64_t stopped_usec = scheduler->stopped_clock_usec(); |
|
if (stopped_usec) { |
|
return stopped_usec; |
|
} |
|
|
|
struct timeval tp; |
|
gettimeofday(&tp, NULL); |
|
uint64_t ret = 1.0e6 * ((tp.tv_sec + (tp.tv_usec * 1.0e-6)) - |
|
(state.start_time.tv_sec + |
|
(state.start_time.tv_usec * 1.0e-6))); |
|
return ret; |
|
} |
|
|
|
uint64_t millis64() |
|
{ |
|
const SITLScheduler* scheduler = SITLScheduler::from(hal.scheduler); |
|
uint64_t stopped_usec = scheduler->stopped_clock_usec(); |
|
if (stopped_usec) { |
|
return stopped_usec / 1000; |
|
} |
|
|
|
struct timeval tp; |
|
gettimeofday(&tp, NULL); |
|
uint64_t ret = 1.0e3*((tp.tv_sec + (tp.tv_usec*1.0e-6)) - |
|
(state.start_time.tv_sec + |
|
(state.start_time.tv_usec*1.0e-6))); |
|
return ret; |
|
} |
|
|
|
} // namespace AP_HAL
|
|
|