1
0
SAE11_2022/include/timer.h

13 lines
241 B
C
Raw Normal View History

#ifndef TIMER_H
#define TIMER_H
#define DELTA 1000000L
void update_timer(unsigned long int start);
unsigned long int start_timer(unsigned long int start);
unsigned long int stop_timer(unsigned long int start);
void wait(int sec);
#endif