Core
Loading...
Searching...
No Matches
timestamp.h
Go to the documentation of this file.
1
11#ifndef CORE_TIMESTAMP_H
12#define CORE_TIMESTAMP_H
13#include <stdint.h>
14
19
23void core_timestamp_read_separate(uint16_t *lsb, uint32_t *msb);
24
30
31#endif
uint64_t core_timestamp_get_tick()
Read the LSB and MSB and return the full timestamp as a 64 bit integer.
Definition timestamp.c:45
void core_timestamp_init()
Initialize the timestamp timers.
Definition timestamp.c:13
void core_timestamp_read_separate(uint16_t *lsb, uint32_t *msb)
Read the LSB and the MSB into two separate variables.
Definition timestamp.c:36