timer.h 219 B

123456789101112
  1. #ifndef TIMER_H
  2. #define TIMER_H
  3. #include <stdint.h>
  4. void timer_init();
  5. uint64_t get_time_us();
  6. void set_delta();
  7. uint64_t get_delta();
  8. void micro_sleep(unsigned long x);
  9. unsigned long time_micros();
  10. #endif