2022-11-23 17:15:02 +01:00
|
|
|
#ifndef TIMER_H
|
|
|
|
#define TIMER_H
|
2022-11-25 12:55:52 +01:00
|
|
|
#define DELTA 1000000L
|
2022-11-23 17:15:02 +01:00
|
|
|
|
2022-11-25 12:55:52 +01:00
|
|
|
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);
|
2022-11-23 17:15:02 +01:00
|
|
|
|
2022-12-08 09:54:54 +01:00
|
|
|
void wait(int sec);
|
|
|
|
|
2022-11-23 17:15:02 +01:00
|
|
|
#endif
|