ardupilot/libraries/AP_HAL_ChibiOS/hwdef/common/hrt.h
Andrew Tridgell 385f735799 HAL_ChibiOS: avoid 64 bit maths in AP_HAL::micros()
this saves a few cycles
2018-08-08 21:24:49 +10:00

14 lines
190 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void hrt_init(void);
uint64_t hrt_micros64(void);
uint32_t hrt_micros32(void);
uint32_t hrt_millis32(void);
#ifdef __cplusplus
}
#endif