11 lines
158 B
C
11 lines
158 B
C
#ifndef __DELAY_H__
|
|
#define __DELAY_H__
|
|
|
|
#include "config.h"
|
|
#include "timer.h"
|
|
|
|
void Delay_Init (void);
|
|
void DelayUs (u16 us);
|
|
void DelayMs (u16 ms);
|
|
|
|
#endif |