mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-11-24 04:09:18 +01:00
14 lines
232 B
C
14 lines
232 B
C
#ifndef _TIMER_H_
|
|
#define _TIMER_H_
|
|
|
|
/* Macros */
|
|
#define udelay(t) Timer_Sleep(t)
|
|
#define usleep(t) Timer_Sleep(t)
|
|
#define msleep(t) Timer_Sleep(t*1000)
|
|
|
|
/* Prototypes */
|
|
void Timer_Init(void);
|
|
void Timer_Sleep(u32 time);
|
|
|
|
#endif
|