去除了test

This commit is contained in:
xin
2025-06-30 16:02:51 +08:00
parent d111649c41
commit c9f4412f89

View File

@ -1,15 +1,20 @@
#include "IS11Comon.h"
#ifdef _WIN32
#include <windows.h>
#else
void delay(int ms){
Sleep(ms);
}
#else
#include <unistd.h> // For usleep
void delay(int ms){
usleep(ms * 1000); // Convert milliseconds to microseconds
}
#include <unistd.h>
#include <cstring>
#endif
void delay(int ms){
Sleep(ms);
}
u_char BufferForRead[10000];