blob: 6960a4bdb8c3cd544be3c45dc0a473888cb0c199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include <stdint.h>
#define TIMER_MILLISECOND 1000ULL
#define TIMER_MICROSECOND 1000000ULL
#define TIMER_NANOSECOND 1000000000ULL
struct timer_source
{
const char *name;
void (*init)(void);
void (*start)(void);
void (*stop)(void);
void (*set_frequency)(uint32_t frequency);
uint32_t (*get_frequency)(void);
uint64_t (*nanoseconds_elapsed)(void);
uint64_t (*nanoseconds_delta)(void);
};
|