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