15 lines
192 B
C
15 lines
192 B
C
#ifndef _public_H
|
|
#define _public_H
|
|
|
|
// #include "reg52.h"
|
|
#include <8052.h>
|
|
|
|
typedef unsigned int u16;
|
|
typedef unsigned char u8;
|
|
|
|
|
|
void delay_10us(u16 ten_us);
|
|
void delay_ms(u16 ms);
|
|
|
|
#endif
|