aboutsummaryrefslogtreecommitdiff
path: root/Tools/tests-host/hrt.cpp
blob: dc9fa23deaab9da1d1e48baaeb9bb88639f76705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <sys/time.h>
#include <inttypes.h>
#include <drivers/drv_hrt.h>
#include <stdio.h>

uint64_t hrt_absolute_time()
{
    struct timeval te; 
    gettimeofday(&te, NULL); // get current time
    unsigned long long us = static_cast<uint64_t>(te.tv_sec) * 1e6 + te.tv_usec; // caculate us
    printf("us: %lld\n", us);
    return us;
}