19 lines
301 B
C++
19 lines
301 B
C++
#include "test1.h"
|
|
#include <iostream>
|
|
#include <cstring>
|
|
#include <chrono>
|
|
#include <thread>
|
|
|
|
int main() {
|
|
// 初始化AD硬件服务化
|
|
test1_init(0, "test1_Service");
|
|
|
|
|
|
while (true) {
|
|
|
|
std::this_thread::sleep_for(std::chrono::seconds(3));
|
|
}
|
|
|
|
return 0;
|
|
}
|