You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
309 B
26 lines
309 B
|
|
|
|
#ifndef _STC_DELAY_H_
|
|
#define _STC_DELAY_H_
|
|
|
|
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include "c_type51.h"
|
|
|
|
extern void Lc_delay_nop(U8 i);
|
|
|
|
#define Lc_delay_100us Delay100us
|
|
|
|
///Delay_100us
|
|
extern void Delay100us();
|
|
|
|
extern void Delay1ms();
|
|
|
|
extern void Delay1us();
|
|
|
|
|
|
|
|
#endif /* end _STC_DELAY_H_ */
|
|
|
|
|
|
|