This commit is contained in:
2023-12-29 00:57:13 +08:00
commit f11925818e
12 changed files with 495 additions and 0 deletions

14
include/public.h Normal file
View File

@ -0,0 +1,14 @@
#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