ardupilot/libraries/AP_HAL_ChibiOS/hwdef/common/hrt.h

14 lines
190 B
C
Raw Normal View History

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
2018-01-08 01:07:26 -04:00
void hrt_init(void);
uint64_t hrt_micros64(void);
uint32_t hrt_micros32(void);
uint32_t hrt_millis32(void);
2018-01-08 01:07:26 -04:00
#ifdef __cplusplus
}
#endif