13 lines
199 B
C
13 lines
199 B
C
#ifndef __DELAY_H
|
|
#define __DELAY_H
|
|
|
|
#include "config.h"
|
|
|
|
void Delay10us(); //@20.000MHz
|
|
void Delay50us(); //@20.000MHz
|
|
|
|
void Delay50ms(); //@20.000MHz
|
|
void Delay1000ms(); //@20.000MHz
|
|
|
|
#endif
|